일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #자바상속#자바이즈어#is~a
- 하이퍼레저패브릭
- #bubbleSort
- hyperledger transaction
- relative path
- html code
- docker example
- border-box
- #JAVASCRIPT
- html object
- #성적관리프로그램
- html plug-in
- #binary
- #C++ 연산자함수오버로딩
- html youtube
- git flow
- #android activity
- html video
- #다차원포인터
- #C++ has~a
- #CallByAddress
- #3차원배열
- html id
- html multimedia
- #2차원배열
- 토큰경제
- #1차원배열
- html charset
- mac terminal command
- html5 new tag
- 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 #include #include #include using namespace std; /* 소멸자 : 객체 소멸 시 자동호출 public으로 만들어야 한다. 외부에서 객체를 소멸할 수 있게 객체 등록 해제 생성자와 동일하지만 함수명 앞에 ~(틸드)가 붙는다. 오버로딩이 불가능하다. const member function으로 만들 수 없다. virtual 함수로 꼭 만들어서 사용해야 한다. (동적바인딩을 위해서) */ class Obj{ int a; public: Obj(int a=0){this->a=a;} ~Obj() { 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 #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); // ..
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 #include #include using namespace std; class Obj{ // 디폴트생성자 public: Obj(){cout
1. private : 외부에서 접근 불가능 단, friend는 접근 가능 2. protected : 상속받은 외부에서만 접근가능 3. public : 아무나 1. 멤버변수, 필드 : 주로 private 2. 생성자함수(디폴트) : public 외부에서 쓰기 위해서 1) 기능 : 객체등록, 필드초기화 2) 명시적 ,암시적 오버로딩이 가능 3) const member function로 만들 수 없다.(cf.const member function: 함수 내의 멤버변수를 보호할 목적을 가진다. 멤버변수의 값을 바꿀 수 없고 읽기만 가능) 4) 디폴트생성자를 명시적으로 구현할 경우 디폴트생성자는 사라진다. 3. 멤버함수, 메소드 : public 외부에서 ..