일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #android activity
- #3차원배열
- #C++ 연산자함수오버로딩
- html youtube
- #binary
- 토큰경제
- border-box
- 하이퍼레저패브릭
- html id
- #성적관리프로그램
- #C++ has~a
- #자바상속#자바이즈어#is~a
- #CallByAddress
- docker example
- #JAVASCRIPT
- #bubbleSort
- relative path
- html object
- html charset
- html plug-in
- #1차원배열
- html5 new tag
- hyperledger transaction
- #2차원배열
- git flow
- html video
- mac terminal command
- html code
- #다차원포인터
- html multimedia
Archives
- Today
- Total
A sentimental robot
iostream operator function overloading 본문
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
42
43
44 |
#include<iostream>
#include<string>
using namespace std;
class A {
int a;
public:A(int num = 0) :a(num) {
}
friend ostream& operator <<(ostream&out, A&aa);
friend istream& operator >>(istream &in, A&aa);
};
ostream& operator <<(ostream & hi, A&aa) {
hi << aa.a<<endl; // <<는 출력연산자
return hi;
}
istream & operator >> (istream &loo, A&aa)
{
loo>> aa.a; // >>는 입력연산자
return loo;
}
void main() {
A aa(100);
A bb;
cout << aa << bb; // 100 0 출력
cin >> aa >> bb ; // aa.a 입력, bb.a 입력
cout << aa << bb; // 입력한 값대로 나옴
}
|
cs |
입출력 스트림은 std안에 있기 때문에 멤버함수로 오버로딩할 수 없다.
외부함수로 빼고 그 외부함수를 friend로 선언해야 한다.
어느 클래스 안에 있을 수 없기 때문에 return *this 를 할 수 없다.
'C++ ' 카테고리의 다른 글
가상상속 (0) | 2018.10.01 |
---|---|
연산자함수 오버로딩 예제 (0) | 2018.09.21 |
대입연산자 (0) | 2018.09.19 |
Operator function (1) | 2018.09.19 |
Friend (0) | 2018.09.19 |