From f6ad1aaa26e49e022dac3cab08bab1a4c53d2339 Mon Sep 17 00:00:00 2001 From: nasicurious Date: Tue, 9 Aug 2022 02:43:50 -0700 Subject: [PATCH] Delete 'LvalueRefrence/Session1-3.cpp' --- LvalueRefrence/Session1-3.cpp | 46 ----------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 LvalueRefrence/Session1-3.cpp diff --git a/LvalueRefrence/Session1-3.cpp b/LvalueRefrence/Session1-3.cpp deleted file mode 100644 index a0c9651..0000000 --- a/LvalueRefrence/Session1-3.cpp +++ /dev/null @@ -1,46 +0,0 @@ -#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