일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅 데이타
- Artificial Intelligence
- 김양재 목사
- data science
- Big Data
- R
- openCV
- 확률
- probability
- Deep learning
- c++
- MongoDB
- 빅데이타
- 주일설교
- 통계
- 우리들교회
- nodeJS
- WebGL
- 빅데이터
- 몽고디비
- 인공지능
- Statistics
- No SQL
- 김양재 목사님
- 데이터 과학
- 딥러닝
- 김양재
- Machine Learning
- 빅 데이터
- node.js
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / Assignment Operator 본문
const className& className::operator=(const className& rightObject) {
//local declaration, if any
if (this != &rightObject) { //avoids self-assignment
//algorithm to copy rightObject into this object
}
//returns the object assigned
return *this;
}
EXAMPLE:
Vector& Vector::operator = (const Vector& f) // '=' 연산자 오버로딩
{
delete[] Vec;
Len = f.Len;
Vec = new double[Len];
for(int i = 0 ; i < Len ; i++)
Vec[i] = f.Vec[i];
return (*this);
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] MFC / 비트맵 출력하기 (0) | 2014.06.14 |
---|---|
[C/C++] Example / Copy Constructor (0) | 2014.06.12 |
[C/C++] Example / Double Pointer (0) | 2014.06.12 |
[C/C++] Example / clockType (0) | 2014.06.12 |
[C/C++] Example / String Append (0) | 2014.06.12 |
Comments