객체와 멤버호출,생성자,소멸자,this포인터


객체와 멤버호출,생성자,소멸자,this포인터

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 #include<iostream> #include<string> using std::cout; using std::cin; class Dog { private: int age; //char name[20]; //문자열 const char *name; public: Dog(); //생성자 Dog(int age) { //생성자 this->age = age; } ~Dog() { //소멸자 cout << "끝"; } void setname(const char* a); const char * getname(); void setAge(int age); int getAge(); void back(); }; Dog::Dog() ...



원문링크 : 객체와 멤버호출,생성자,소멸자,this포인터