반응형

#C++ 소스 6

상품과 할인 상품 - 상속과 다형성 실습 [디딤돌 C++]

상품과 할인 상품 - 상속과 다형성 실습언제나 휴일 티스토리 //상속과 다형성 실습1(상품과 할인 상품)#include #include using namespace std; class Product{ string name; int price;public: Product(string name,int price) //생성자 { SetName(name); SetPrice(price); } virtual int GetPrice()const //가격접근자 가상 메서드 { return price; } string GetName()const //이름접근자 { return name; } virtual void Print()const//정보 출력 가상 메서드 { coutPrint(); p2->Print(); delete..

C++/디딤돌 C++ 2016.04.17
반응형