일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JUCE라이브러리
- C언어
- 공룡책
- Docker
- C++ gui 라이브러리
- 프로그래밍
- 알고리즘
- 백준
- 리듬게임
- 코딩
- Nebula
- JUCE
- C++ library
- vim-go
- 자료구조
- go
- tour of go
- go channel
- c++ heap
- 연결리스트
- LOB
- C++ gui
- JUCE 튜토리얼
- 운영체제
- BOJ
- gui
- C++
- a tour of go
- JUCE library
- OS
Archives
- Today
- Total
CafeM0ca
[C++]mutable 본문
반응형
mutable은 const나 static, register, extern과 같은 키워드다.
역할은 const선언된 구조체나 클래스에서 값을 바꿀 수 있도록 도와준다.
1 2 3 4 5 6 7 8 9 10 11 12 | struct student{ char name[20]; int IQ; mutable int age; }; int main(void){ //상수화된 구조체 struct student const me={"M0ca",111,17}; //me.IQ=130 안된다. me.age=18; //된다. return 0; } | cs |
반응형
'Programming > C++' 카테고리의 다른 글
[C++]형변환(typecasting) (0) | 2018.01.22 |
---|---|
[C++]class static 멤버변수 (0) | 2018.01.06 |
[C++]템플릿 (0) | 2018.01.03 |
[C++] 런타임 과정에서의 입력 값 (0) | 2017.12.02 |
[C++]inline (0) | 2017.11.29 |
Comments