일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mac terminal command
- #JAVASCRIPT
- html object
- #3차원배열
- html code
- #binary
- hyperledger transaction
- html youtube
- relative path
- #C++ 연산자함수오버로딩
- #android activity
- 토큰경제
- git flow
- #2차원배열
- html id
- #1차원배열
- 하이퍼레저패브릭
- #CallByAddress
- border-box
- html video
- html multimedia
- #C++ has~a
- html charset
- #성적관리프로그램
- html5 new tag
- html plug-in
- #자바상속#자바이즈어#is~a
- #bubbleSort
- #다차원포인터
- docker example
Archives
- Today
- Total
목록#C++ this (1)
A sentimental robot
This
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 #include #include #include using namespace std; /* this pointer: 메소드의 첫번째 매개변수로 선언되어있다. */ class Obj{ int a; public: Obj(int a=0){this->a=a;} void setA(int a){ // void setA(Obj * this, int a) this->a=a; } int getA(){ return a; } }; void main(){ Obj obj; Obj obj2(100); // obj.setA(100); // ..
C++
2018. 9. 12. 15:22