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