From 76f92b5efc1c6e3f2c6284ea45d296e15b5fa24b Mon Sep 17 00:00:00 2001 From: nasiCurious Date: Tue, 9 Aug 2022 13:34:13 +0430 Subject: [PATCH] LvalueRefrence Exercise --- LvalueRefrence/Session1-1.cpp | 37 ++++++++++++++++++++++++++++ LvalueRefrence/Session1-2.cpp | 46 +++++++++++++++++++++++++++++++++++ LvalueRefrence/Session1-3.cpp | 46 +++++++++++++++++++++++++++++++++++ LvalueRefrence/Session1-4.cpp | 46 +++++++++++++++++++++++++++++++++++ 4 files changed, 175 insertions(+) create mode 100644 LvalueRefrence/Session1-1.cpp create mode 100644 LvalueRefrence/Session1-2.cpp create mode 100644 LvalueRefrence/Session1-3.cpp create mode 100644 LvalueRefrence/Session1-4.cpp diff --git a/LvalueRefrence/Session1-1.cpp b/LvalueRefrence/Session1-1.cpp new file mode 100644 index 0000000..c4bae3a --- /dev/null +++ b/LvalueRefrence/Session1-1.cpp @@ -0,0 +1,37 @@ +#include +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; +} \ No newline at end of file diff --git a/LvalueRefrence/Session1-2.cpp b/LvalueRefrence/Session1-2.cpp new file mode 100644 index 0000000..bfea1b3 --- /dev/null +++ b/LvalueRefrence/Session1-2.cpp @@ -0,0 +1,46 @@ +#include +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; +} \ No newline at end of file diff --git a/LvalueRefrence/Session1-3.cpp b/LvalueRefrence/Session1-3.cpp new file mode 100644 index 0000000..a0c9651 --- /dev/null +++ b/LvalueRefrence/Session1-3.cpp @@ -0,0 +1,46 @@ +#include +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; +} \ No newline at end of file diff --git a/LvalueRefrence/Session1-4.cpp b/LvalueRefrence/Session1-4.cpp new file mode 100644 index 0000000..2f7923b --- /dev/null +++ b/LvalueRefrence/Session1-4.cpp @@ -0,0 +1,46 @@ +#include +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; +} \ No newline at end of file