목록클래스 (1)
without haste but without rest
[C++] 클래스
0. 구조체와 클래스 C의 구조체가 클래스구나 싶었는데 어느정도 맞았다. 차이점은 구조체의 경우 내부에 메소드를 포함할 수 없고, 클래스와 인스턴스의 관계 정도다. (C++ 클래스는 자바랑 또 어느정도 다른 듯한 느낌이다.) 1. 클래스 예제 #include #include using namespace std; class Student { private: string name; int age; public: Student(string n, int s) { name = n; age = s; } void show() { cout
ProgrammingLanguage/C++
2020. 3. 2. 17:18