C++/디딤돌 C++

[C++ 소스] 실현(REALIZATION) 관계, IStudy 인터페이스와 Student 클래스

언제나휴일 2016. 12. 18. 22:35
반응형

실현(REALIZATION) 관계, IStudy 인터페이스와 Student 클래스


Program.cpp

실현 관계 클래스 다이어그램





#include <iostream>

using namespace std;

#define interface struct

 

interface IStudy

{

    virtual void Study()=0;

};

 

 

class Student :

    public IStudy

{

public:

    void Study()

    {

        cout<<"공부하다."<<endl;

    }

};

 

int main()

{

    IStudy *istudy = new Student();

    istudy->Study();

    delete istudy;

 

    return 0;

}


실행 결과

공부하다



본문

[디딤돌 C++] 67. 실현(REALIZATION) 관계




반응형