일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #C++ has~a
- relative path
- #C++ 연산자함수오버로딩
- #android activity
- #다차원포인터
- html multimedia
- border-box
- html charset
- #성적관리프로그램
- html object
- html plug-in
- #3차원배열
- docker example
- html code
- html video
- git flow
- #2차원배열
- #1차원배열
- 토큰경제
- #binary
- #CallByAddress
- html5 new tag
- 하이퍼레저패브릭
- html id
- html youtube
- #자바상속#자바이즈어#is~a
- mac terminal command
- #bubbleSort
- #JAVASCRIPT
- hyperledger transaction
Archives
- Today
- Total
목록#C++ const (1)
A sentimental robot
const
const field : 콜론 초기화를 해야한다. const method : 메소드 내에서 필드의 값을 보호하는 목적 const object : 객체 안의 데이터 보호 목적 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 32 33 34 35 36 #include using namespace std; class A { const int a; int b; public: A(int aa) :a(aa) , b (aa){ //콜론초기화: 생성자가 동작하기 전에 cosnt 필드 초기화 하기 //b = aa; } int getA()const { return a; } int getB()const { return b;..
C++
2018. 9. 17. 16:17