You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
362 B
37 lines
362 B
#include <iostream>
|
|
using namespace std;
|
|
class Test
|
|
{
|
|
|
|
private:
|
|
int _a;
|
|
int& _b=_a;
|
|
|
|
|
|
public:
|
|
|
|
Test()
|
|
{
|
|
_a = 5;
|
|
cout << "Normal constructor"<< endl;
|
|
}
|
|
|
|
void printValue()
|
|
{
|
|
_b=12;
|
|
cout << _a << "---" << _b<< endl;
|
|
}
|
|
void printAddress()
|
|
{
|
|
cout << &_a << "---" << &_b<< endl;
|
|
}
|
|
|
|
};
|
|
int main()
|
|
{
|
|
Test t;
|
|
t.printValue();
|
|
t.printAddress();
|
|
|
|
return 0;
|
|
}
|