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;
}
'Programming > C,CPP,CS' 카테고리의 다른 글
Run-Time Check Failure #3 - The variable 'a' is being used without being initialized. (0) | 2014.05.14 |
---|---|
C 언어 방향키 입력활용 (0) | 2014.05.03 |
C 정렬함수 인자 주소값, 사이즈 (0) | 2014.04.12 |
C 선택, 버블 정렬 함수 (0) | 2014.04.12 |
C 언어 반복문 실습 과제 (0) | 2014.03.22 |