표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
#include <iostream> using namespace std; class Person { private: string name_; int age_; public: Person(const string& name, int age); // 기초 클래스 생성자의 선언 virtual void ShowPersonInfo(); }; class Student : public Person { private: int student_id_; public: Student(int sid, const string& name, int age); // 파생 클래스 생성자의 선언 virtual void ShowPersonInfo(); // 파생 클래스에서 상속받은 멤버 함수의 재정의 }; int main(void) { Person* ptr_person; Person lee("순신", 35); Student hong(123456789, "길동", 29); ptr_person = &lee; ptr_person->ShowPersonInfo(); ptr_person = &hong; ptr_person->ShowPersonInfo(); return 0; } Person::Person(const string& name, int age) // 기초 클래스 생성자의 정의 { name_ = name; age_ = age; } void Person::ShowPersonInfo() { cout << name_ << "의 나이는 " << age_ << "살입니다." << endl; } Student::Student(int sid, const string& name, int age) : Person(name, age) // 파생 클래스 생성자의 정의 { student_id_ = sid; } void Student::ShowPersonInfo() { cout << "이 학생의 학번은 " << student_id_ << "입니다." << endl; }