In this Repository ,i'll send the source Code of cpp training Course.
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.

46 lines
444 B

#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;
}