static member function
c++ static member function (정적 멤버 함수)
c++ static member function (정적 멤버 함수)
2020.10.29#include using namespace std; class Something private: static int s_value; public: static int getValue() { return s_value; } int temp() { return this->s_value; } }; int main() { Something s1; Something s2; cout