티스토리 뷰
반응형
객체 operator+ (객체를 받는 객체) 함수
//결국엔 함수 호출이다.
//함수명은 정해져있다 operator기호
예제)
class sample{
int x;
int y;
public :
sample(){ x=0 , y=0;}
sample (int n1, int n2) { x = n1, y = n2;}
~sample() {}
void GetData(int &i, int &j) { i =x; j=y;}
sample operator+ (sample obj);
};
sample sample::operator +(sample obj)
//a+b == a.operator+ (b) 앞에있는 함수의 오퍼레이터
{
sample temp;
temp.x = x+obj.x;
temp.y = y+obj.y;
return temp;
}
void main()
{
sample a(10,10), b(5,2), c;
int x, y;
//c라는 객체에 a와 b객체를 더한 값을 집어넣고 싶다.
c = a+b;
// 하지만 이대로라면 에러가 난다. 그래서 operator+ 함수를 호출하여 +에기능을 부여한다.
}
반응형
'C++' 카테고리의 다른 글
c++ 상속 이용한 간단 인베이더 (0) | 2014.09.12 |
---|---|
c++ 노드 이용 (0) | 2014.09.12 |
생성자와 파괴자 (0) | 2014.09.12 |
클래스 (0) | 2014.09.12 |
구조체와 클래스의 차이점 (0) | 2014.09.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Regex
- selectbox
- 이메일 정규식
- 공백찾기
- SpringXmlModelInspection
- ''찾기
- poi 엑셀
- spring 엑셀
- 계좌번호정규식
- IntelliJ #gradle #tomcat #spring #springmvc
- select제어
- JSON
- POI EXCEL
- js
- JSON파싱
- no getter for property named
- spring error #
- poi
- 인텔리제이
- 정규식
- Failed to load resource: the server responded with a status of 404 (Not Found)
- Spring
- PageNotFound - No mapping for GET
- 정규식 한글만
- 엑셀다운로드
- JSON날짜
- 정규식 숫자만
- jQuery
- mybatis
- 정규식 특수문자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함