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 |
Tags
- 딥러닝
- 맵리듀스
- overriding
- 최소제곱법
- Overloading
- kubernetes
- call by reference
- 비선형모델
- least square
- Nonlinear Function
- 머신러닝
- member function
- Class
- c++
- 회귀학습
- local minimum
- 비선형 함수
- 지도학습
- Nonlinear Model
- Machine learning
- Linear Regression
- call by value
- 선형모델
- inheritance
- Effective C++
- struct
- regression
- virtual function
- 회귀
- MapReduce
Archives
- Today
- Total
목록inheritance (1)
J's Study log
[C++] Inheritance
Inheritance The base idea of inheritance is for making a conflicated classes relation more simple. No matter you add or delete a class. It'll be much easier by using inheritance. How to inherit 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 class A { private: int a; char b[100]; public: A(int num, char* word) : a(num) { strcpy(b, word); } void ..
Computer Language/C++
2020. 3. 10. 17:48