Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- regression
- MapReduce
- 선형모델
- 딥러닝
- member function
- 회귀학습
- kubernetes
- 비선형모델
- virtual function
- 지도학습
- 회귀
- 머신러닝
- least square
- Overloading
- Effective C++
- Linear Regression
- struct
- overriding
- 최소제곱법
- Machine learning
- Nonlinear Model
- 비선형 함수
- local minimum
- Class
- Nonlinear Function
- 맵리듀스
- inheritance
- call by value
- c++
- call by reference
Archives
- Today
- Total
J's Study log
[C++] const 본문
Const Function
1
|
void ShowRecInfo() const;
|
cs |
It means 'In this function the value of member variable will not be changed'.
In const function you can only call const functions, otherwise a compile error will occur.
'Computer Language > C++' 카테고리의 다른 글
[C++] Inheritance (0) | 2020.03.10 |
---|---|
[C++] Class / Struct (0) | 2020.03.08 |
[C++] new & delete (0) | 2020.02.22 |
[C++] Different length of String - not (0) | 2020.02.20 |
[C++] Overloading, Default value (0) | 2020.02.08 |
Comments