추상클래스1 [C++] 추상 클래스 (abstract class), 인터페이스(interface) 순수 가상 함수 (pure virtual function) - 함수의 구현부가 없고, 선언부가 =0 으로 끝나는 가상함수 추상 클래스 (abstract class) - 순수 가상 함수가 한 개 이상 있는 클래스 - 객체를 생성할 수 없다. - 포인터 변수는 만들 수 있다. #include using namespace std; class Shape { public: virtual void Draw() = 0; }; int main() { Shape s; // error Shape* p; } 출력 : 추상 클래스의 객체를 생성할 수 없기 때문에 에러가 발생한다. main.cpp:21:11: error: cannot declare variable ‘s’ to be of abstract type ‘Shape’ .. 2021. 12. 28. 이전 1 다음