const 썸네일형 리스트형 Const (한정자) 관련 질문입니다. #include using namespace std; class CObj { private: const int m_iValue; const short m_sValue; int m_iTest; public: int* GetTest(void) const //1번 함수 { return &m_iTest; } int* const GetTest2(void) { return &m_iTest; // 2번 함수 } }; int main(void) { return 0; } 1번 함수는 왜 오류가 나는 건가요?? 그리고 nt* const GetTest(void) 이렇게도 되는데 이건 무슨 의미 인가요??? Const 선언의 위치는 알아보기 쉽게 맨 앞으로 해주세요 1. int* GetTest(void) const 이게 별로.. 더보기 이전 1 다음