일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- border-box
- #JAVASCRIPT
- html multimedia
- hyperledger transaction
- git flow
- 하이퍼레저패브릭
- html object
- mac terminal command
- #자바상속#자바이즈어#is~a
- html video
- #C++ 연산자함수오버로딩
- html id
- #1차원배열
- html youtube
- docker example
- 토큰경제
- #2차원배열
- #C++ has~a
- relative path
- #binary
- #다차원포인터
- #성적관리프로그램
- html charset
- #3차원배열
- #android activity
- html plug-in
- #bubbleSort
- html5 new tag
- #CallByAddress
Archives
- Today
- Total
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<iostream>
#include<string.h>
#include<cstdlib>
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); // obj.setA(&obj, 100);
cout << obj. getA() << endl;
cout << obj2. getA() << endl;
}
|
cs |
'C++ ' 카테고리의 다른 글
Namespace (0) | 2018.09.12 |
---|---|
소멸자 (0) | 2018.09.12 |
동적메모리로 할당하기 new (0) | 2018.09.12 |
클래스 (0) | 2018.09.12 |
Implicit overloading (0) | 2018.09.12 |