반응형
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
- Redshift
- PANDAS
- PySpark
- Google Excel
- GIT
- SQL
- Mac
- PostgreSQL
- Apache
- list
- Python
- numpy
- math
- gas
- django
- Java
- c#
- Kotlin
- matplotlib
- Google Spreadsheet
- array
- hive
- Tkinter
- Github
- 파이썬
- google apps script
- dataframe
- Excel
- string
Archives
- Today
- Total
달나라 노트
C++ : const (상수값 설정, 재할당 불가능한 변수 선언) 본문
728x90
반응형
변수를 선언할 때 맨 앞에 const 키워드를 붙이면 이 변수는 절대 재할당이 불가능한 변수로 생성됩니다.
#include <iostream>
using namespace std;
int main() {
const int test_int = 10;
return 0;
}
위 예시를 보면 test_int라는 변수를 선언 후 10이라는 값을 할당하고 있습니다.
근데 const라는 키워드가 붙어있습니다.
이렇게 생성된 test_int 변수는 이후 코드의 어떤 부분에서 test_int = 20;과 같이 다른 값을 재할당할 수 없습니다.
재할당하려면 에러가 발생합니다.
728x90
반응형
'C++' 카테고리의 다른 글
C++ : if ~ else if ~ else (조건문), 한줄 if문 (0) | 2022.03.23 |
---|---|
C++ : sizeof (자료형의 크기, 문자의 크기, 숫자의 크기) (0) | 2022.03.23 |
C++ : cin (사용자 입력 값 받기, user input) (0) | 2022.03.23 |
C++ : 변수와 자료형 (variable and data type) (0) | 2022.03.23 |
C++ : cout << (글자 출력하기) (0) | 2022.03.23 |
Comments