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