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
- struct
- c++
- Effective C++
- Nonlinear Function
- 머신러닝
- 회귀
- inheritance
- 지도학습
- Class
- Overloading
- 회귀학습
- virtual function
- least square
- 맵리듀스
- 비선형모델
- MapReduce
- kubernetes
- 선형모델
- 딥러닝
- regression
- 최소제곱법
- member function
- call by value
- Nonlinear Model
- Linear Regression
- call by reference
- local minimum
- Machine learning
- overriding
- 비선형 함수
Archives
- Today
- Total
목록pointer (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