Compare commits
1 Commits
master
...
LValueRefe
Author | SHA1 | Date |
---|---|---|
|
6d0b3e9e64 | 3 years ago |
8 changed files with 172 additions and 175 deletions
@ -0,0 +1,35 @@ |
|||
#include <iostream> |
|||
|
|||
class Test |
|||
{ |
|||
private: |
|||
int _a; |
|||
int& _b = _a; |
|||
|
|||
public: |
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
std::cout << "Normal constructor" << std::endl; |
|||
} |
|||
|
|||
void printValue() |
|||
{ |
|||
_b = 12; |
|||
std::cout << _a << "---" << _b << std::endl; |
|||
} |
|||
|
|||
void printAddress() |
|||
{ |
|||
std::cout << &_a << "---" << &_b << std::endl; |
|||
} |
|||
}; |
|||
|
|||
int main() |
|||
{ |
|||
Test t; |
|||
t.printValue(); |
|||
t.printAddress(); |
|||
|
|||
return 0; |
|||
} |
@ -0,0 +1,46 @@ |
|||
#include <iostream> |
|||
|
|||
class Test |
|||
{ |
|||
private: |
|||
int _a; |
|||
int& _b = _a; |
|||
|
|||
public: |
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
std::cout << "Normal constructor" << std::endl; |
|||
} |
|||
|
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
std::cout << "copy constructor" << std::endl; |
|||
} |
|||
|
|||
void printValue() |
|||
{ |
|||
std::cout << _a << "---" << std::endl; |
|||
} |
|||
|
|||
void setA (int a) |
|||
{ |
|||
_a = a; |
|||
} |
|||
}; |
|||
|
|||
void temp(Test t) |
|||
{ |
|||
t.setA(10); |
|||
t.printValue(); |
|||
} |
|||
|
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
return 0; |
|||
} |
@ -0,0 +1,46 @@ |
|||
#include <iostream> |
|||
|
|||
class Test |
|||
{ |
|||
private: |
|||
int _a; |
|||
int& _b = _a; |
|||
|
|||
public: |
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
std::cout << "Normal constructor" << std::endl; |
|||
} |
|||
|
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
std::cout << "copy constructor" << std::endl; |
|||
} |
|||
|
|||
void printValue() |
|||
{ |
|||
std::cout << _a << "---" << std::endl; |
|||
} |
|||
|
|||
void setA (int a) |
|||
{ |
|||
_a = a; |
|||
} |
|||
}; |
|||
|
|||
void temp(Test& t) |
|||
{ |
|||
t.setA(10); |
|||
t.printValue(); |
|||
} |
|||
|
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
return 0; |
|||
} |
@ -0,0 +1,45 @@ |
|||
#include <iostream> |
|||
|
|||
class Test |
|||
{ |
|||
private: |
|||
int _a; |
|||
int& _b = _a; |
|||
|
|||
public: |
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
std::cout << "Normal constructor" << std::endl; |
|||
} |
|||
|
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
std::cout << "copy constructor" << std::endl; |
|||
} |
|||
|
|||
void printValue() const |
|||
{ |
|||
std::cout << _a << "---" << std::endl; |
|||
} |
|||
|
|||
void setA (int a) |
|||
{ |
|||
_a = a; |
|||
} |
|||
}; |
|||
|
|||
void temp(const Test& t) |
|||
{ |
|||
t.printValue(); |
|||
} |
|||
|
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
return 0; |
|||
} |
@ -1,37 +0,0 @@ |
|||
#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; |
|||
} |
@ -1,46 +0,0 @@ |
|||
#include <iostream> |
|||
using namespace std; |
|||
class Test |
|||
{ |
|||
|
|||
private: |
|||
int _a; |
|||
int& _b=_a; |
|||
|
|||
|
|||
public: |
|||
|
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
cout << "Normal constructor"<< endl; |
|||
} |
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
cout << "copy constructor"<< endl; |
|||
} |
|||
void printValue() |
|||
{ |
|||
|
|||
cout << _a << "---" << endl; |
|||
} |
|||
void setA (int a) |
|||
{ |
|||
_a =a; |
|||
} |
|||
}; |
|||
void temp(Test t) |
|||
{ |
|||
t.setA(10); |
|||
t.printValue(); |
|||
} |
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
|
|||
return 0; |
|||
} |
@ -1,46 +0,0 @@ |
|||
#include <iostream> |
|||
using namespace std; |
|||
class Test |
|||
{ |
|||
|
|||
private: |
|||
int _a; |
|||
int& _b=_a; |
|||
|
|||
|
|||
public: |
|||
|
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
cout << "Normal constructor"<< endl; |
|||
} |
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
cout << "copy constructor"<< endl; |
|||
} |
|||
void printValue() |
|||
{ |
|||
|
|||
cout << _a << "---" << endl; |
|||
} |
|||
void setA (int a) |
|||
{ |
|||
_a =a; |
|||
} |
|||
}; |
|||
void temp(Test& t) |
|||
{ |
|||
t.setA(10); |
|||
t.printValue(); |
|||
} |
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
|
|||
return 0; |
|||
} |
@ -1,46 +0,0 @@ |
|||
#include <iostream> |
|||
using namespace std; |
|||
class Test |
|||
{ |
|||
|
|||
private: |
|||
int _a; |
|||
int& _b=_a; |
|||
|
|||
|
|||
public: |
|||
|
|||
Test() |
|||
{ |
|||
_a = 5; |
|||
cout << "Normal constructor"<< endl; |
|||
} |
|||
Test(const Test& rhs) |
|||
{ |
|||
_a = rhs._a; |
|||
cout << "copy constructor"<< endl; |
|||
} |
|||
void printValue() const |
|||
{ |
|||
|
|||
cout << _a << "---" << endl; |
|||
} |
|||
void setA (int a) |
|||
{ |
|||
_a =a; |
|||
} |
|||
}; |
|||
void temp(const Test& t) |
|||
{ |
|||
|
|||
t.printValue(); |
|||
} |
|||
int main() |
|||
{ |
|||
Test t; |
|||
temp(t); |
|||
t.printValue(); |
|||
|
|||
|
|||
return 0; |
|||
} |
Loading…
Reference in new issue