반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Level3
- 자바스크립트
- Level1
- react
- CS
- Medium
- 프로그래머스
- 배열
- python
- javascript
- dp
- Doitvue.js입문
- 코테연습
- VUE
- 프로그래밍
- 파이썬
- 웹프로그래밍
- OS
- LeetCode
- 고득점Kit
- sql
- 리액트
- 백준
- 카카오
- 리트코드
- C++
- 동적계획법
- Level2
- web
- typescript
Archives
- Today
- Total
[c++] inline variable 본문
반응형
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