cpp

Programming/C,CPP,CS 2014. 5. 3. 10:18 Posted by TanSanC
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#include <iostream>

#include <string>

using namespace std;

class 에어컨

{

public:

    virtual void powerOn()  {

        cout << "에어컨이켜집니다." << endl;

    }

};

class 냉난방기: public 에어컨

{

public:

    void powerOn()  {

        cout << "냉난방기가켜집니다." << endl;

    }

};

void TestFunc(에어컨* tf)

{

    (*tf).powerOn();

}

int main()

{

    에어컨a;

    TestFunc(&a);

 

    냉난방기b;

    TestFunc(&b);

    return 0;

}