티스토리 뷰
'클래스명::static멤버' 로 접근해야 한다.
Person::sharedMoney = 200;
Person::addShared(200);
non-static이면 에러를 뿜뿜할 것이다..
non-static멤버는 static에 접근할 수 있지만 static멤버는 non-static에 접근할 수 없다.
'PL > C++' 카테고리의 다른 글
[C++] template (0) | 2021.12.15 |
---|---|
[C++] Inheritance(상속) (0) | 2021.12.15 |
[C++] overloading(오버로딩) vs overriding(오버라이딩), virtual function (0) | 2021.12.05 |
[C++] namespace 사용하기 (0) | 2021.11.05 |
[C++] cin, cout, namespace, string (0) | 2021.09.30 |