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
- Overloading
- 지도학습
- call by value
- virtual function
- Nonlinear Function
- kubernetes
- c++
- Nonlinear Model
- 회귀학습
- Effective C++
- MapReduce
- Class
- regression
- 맵리듀스
- 머신러닝
- local minimum
- member function
- struct
- 최소제곱법
- 선형모델
- call by reference
- 비선형 함수
- inheritance
- overriding
- least square
- Machine learning
- 회귀
- 딥러닝
- Linear Regression
- 비선형모델
Archives
- Today
- Total
목록Reference (1)
J's Study log
[C++] Reference Relation of Object Pointer
object pointer variable Think about, what if a base class's pointer points a derived class 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 #include using namespace std; class Person { public: void Sleep(){ coutReceive_Scholar(); // (x) */ return 0; } Person* variables can point every derive..
Computer Language/C++
2020. 3. 27. 00:30