일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- border-box
- #성적관리프로그램
- #CallByAddress
- 토큰경제
- #다차원포인터
- git flow
- relative path
- html code
- html multimedia
- html charset
- #C++ 연산자함수오버로딩
- #자바상속#자바이즈어#is~a
- html object
- html5 new tag
- html youtube
- #JAVASCRIPT
- #2차원배열
- #android activity
- 하이퍼레저패브릭
- docker example
- mac terminal command
- #1차원배열
- #bubbleSort
- hyperledger transaction
- html id
- #3차원배열
- #binary
- #C++ has~a
- html video
- html plug-in
Archives
- Today
- Total
목록#C++ 연산자함수오버로딩 (2)
A sentimental robot
연산자함수 오버로딩 예제
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
C++
2018. 9. 21. 11:59
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