本文整理汇总了C++中A::getNum方法的典型用法代码示例。如果您正苦于以下问题:C++ A::getNum方法的具体用法?C++ A::getNum怎么用?C++ A::getNum使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类A
的用法示例。
在下文中一共展示了A::getNum方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: const_use_in_return_test
static void const_use_in_return_test()
{
class A{
public:
A():num(2){}
~A(){}
/*
* const here means (const this)
*/
void setNum(int num) const {this->num = num;}
int getNum() { return this->num;}
const int getNum() const { return this->num << 2;}
private:
mutable int num; // can be modified in const context
};
class B {
public:
B(){}
~B(){}
const A* get() { return new A(); }
};
A a;
a.setNum(100);
int x = a.getNum();
const A a2;
a2.setNum(100);
const int y = a2.getNum();
std::cout << "x:" << x << "y:" << y << std::endl;
/*
* const object can only access it's const function
* non-const object can access it's both const and non-const function
*/
B b;
b.get()->getNum();
((A *)b.get())->setNum(99);
((A *)b.get())->getNum();
delete b.get();
}