일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html charset
- #자바상속#자바이즈어#is~a
- 토큰경제
- #성적관리프로그램
- html code
- 하이퍼레저패브릭
- #1차원배열
- #bubbleSort
- mac terminal command
- #C++ 연산자함수오버로딩
- border-box
- #binary
- html id
- #android activity
- relative path
- html video
- #CallByAddress
- html plug-in
- git flow
- docker example
- #C++ has~a
- #2차원배열
- html object
- html5 new tag
- html multimedia
- hyperledger transaction
- #다차원포인터
- #3차원배열
- html youtube
- #JAVASCRIPT
- Today
- Total
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 #include using namespace std; class A { public: void dispA() { cout
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..
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
대입연산자도 복사생성자와 마찬가지로 얉은 대입과 깊은 대입이 있다. 1. 얉은 대입 연산자 함수 (디폴트 대입연산자 함수) 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 #include using namespace std; class A { int a; public: A(int a = 0) { this->a = a; } void setA(int a) { this->a = a; } int getA()const { return a; } A& operator = (const A &t) { // call by reference if (this == &t) return *this; /..