class 자료형
c++ 클래스 안에 포함된 자료형
c++ 클래스 안에 포함된 자료형
2020.10.30#include using namespace std; // nested types enum FruitType { APPLE, BANANA, CHERRY, }; class Fruit { private: FruitType m_type; public: Fruit(FruitType type) : m_type(type) {} FruitType getType() { return m_type; } }; int main() { Fruit fruit(CHERRY); cout