본문 바로가기

Computer Engineering

[C++] const 상수로 정의하면

#include <iostream>

using namespace std;

int main()
{
  const unsigned short studentPerClass = 30;
  // studentPerClass = 50; //변경이 불가능함.
 => 위의 주석을 제거해서 컴파일을 시도하면
error: assignment of read-only variable 이라는 에러가 발생한다.
  cout<< studentPerClass << endl;

  return 0;
}

'Computer Engineering' 카테고리의 다른 글

[C] 0x01  (0) 2012.01.05
Emacs 명령어  (0) 2011.11.15
[C++] typedef 예약어  (0) 2011.11.08
[C] shift operator (쉬프트 연산자)  (0) 2011.11.07
[C] scanf 사용시 소수를 받아드릴 때에 주의할 사항  (0) 2011.11.07