[c++] inline variable 본문

객체지향프로그래밍 (C++)

[c++] inline variable

미니모아 2020. 7. 7. 14:44
반응형
inline void Test() {  
    cout << "1" << endl;  
    cout << "2" << endl;  
    cout << "3" << endl;  
}  
int main() {  
    Test();  
    return 0;  
}

c++17 이후로 변수에도 inline 키워드 사용 가능

class Test {
public:
   // static int a;
    inline static int a = 10;
};
//int Test::a = 10

int main() {
    Test aa;
    cout << aa.a<< endl;
    return 0;
}
반응형

'객체지향프로그래밍 (C++)' 카테고리의 다른 글

[c++] structor(구조체)  (0) 2020.07.07
[c++] Pointer (포인터)  (0) 2020.07.07
[c++] class , object ( 클래스, 객체)  (0) 2020.07.07
[c++] Header  (0) 2020.07.06
[c++] string(문자열)  (0) 2020.07.06
Comments