목록생성자 (1)
without haste but without rest
[C++] 생성자
0. 생성자 C++ 에서는 생성자(Constructor)를 이용해서 객체를 생성과 동시에 멤머 변수를 초기화할 수 있다. (자바에서 쓰던 그 생성자가 맞다.) 1. 생성자 예제 코드 #include #include using namespace std; class Student { private: string name; int age; int absent; public: Student(string name, int age) { this->name = name; this->age = 20; this->absent = 0;// 결석횟수는 인스턴스 생성시 0부터 시작 } void show() { cout
ProgrammingLanguage/C++
2020. 3. 2. 17:58