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.

45 lines
466 B

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