일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html code
- 하이퍼레저패브릭
- html charset
- html video
- #자바상속#자바이즈어#is~a
- 토큰경제
- relative path
- border-box
- #성적관리프로그램
- docker example
- html id
- #android activity
- html youtube
- #CallByAddress
- html plug-in
- git flow
- #C++ 연산자함수오버로딩
- #3차원배열
- #2차원배열
- #C++ has~a
- #binary
- #bubbleSort
- html object
- mac terminal command
- html5 new tag
- #JAVASCRIPT
- hyperledger transaction
- #다차원포인터
- html multimedia
- #1차원배열
Archives
- Today
- Total
목록#C++ iostream operator function overloading (1)
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 #include using namespace std; class A { int a; public:A(int num = 0) :a(num) { } friend ostream& operator (istream &in, A&aa); }; ostream& operator
C++
2018. 9. 20. 08:28