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

When you make an object by using a class. You might think that the memory of member functions are placed in the memory of object. But actually it's not. Conceptually, and on the basis of OOP logic, it's natural to think of member function does exist in the object. And it's a great attitude for facing C++. So just put the truth at the back of your mind. Let's cut to the chase. Operation principle..
Computer Language/C++
2020. 4. 25. 23:25
[C++] Virtual Function
Let's think about OOP literally while reading the code below. 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 #include using namespace std; class AAA { public: void ABC(){ cout
Computer Language/C++
2020. 4. 1. 21:25