티스토리 뷰
const 객체
- 데이터의 변경이 허용되지 않는다.
- const 함수 이외에는 사용이 불가능하다
Ex)
class Test{
const int age;
char id[10];
public:
Test(int _age, char* _id):age(_age){
strcpy(id,_id);
}
void showData() const{
cout << age << endl;
cout << id << endl;
}
void putid(char *_id){
strcpy(id,_id);
}
};
int main(){
const Test test1(19,"YiSangMan");
test1.putid("YiHaMan"); //컴파일에러
test1.showData(); // 가능
return 0;
}
'프로그래밍(programming) > C++' 카테고리의 다른 글
explicit 과 mutable (0) | 2013.10.11 |
---|---|
class 내의 static 변수 초기화 (0) | 2013.10.11 |
const를 이용한 멤버변수 상수화와 초기화 (0) | 2013.10.10 |
함수에 const 를 넣는 경우 (0) | 2013.10.10 |
const int* pN과 int* const pN의 차이 (0) | 2013.10.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- x1 카본 2017
- lenovo
- L470
- x270
- x250
- x1 carbon
- x260
- 소켓
- 파이썬
- x1c
- t470
- t450s
- x1 carbon 2017
- c++
- 더헌트맨
- t570
- x1 carbon 5th
- thinkpad 13
- Python
- Yoga 370
- Thinkpad
- x1 카본 5세대
- socket
- t470p
- 키보드
- 레노버
- t460s
- L570
- x1
- t470s
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함