일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 youtube
- #C++ has~a
- hyperledger transaction
- html id
- git flow
- docker example
- #1차원배열
- #binary
- html code
- 하이퍼레저패브릭
- #3차원배열
- #android activity
- #다차원포인터
- #JAVASCRIPT
- relative path
- 토큰경제
- html charset
- #성적관리프로그램
- border-box
- html object
- #자바상속#자바이즈어#is~a
- html multimedia
- #CallByAddress
- mac terminal command
- #C++ 연산자함수오버로딩
- html5 new tag
- #bubbleSort
- html plug-in
- #2차원배열
- html video
Archives
- Today
- Total
목록#C++ 소멸자 (1)
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
C++
2018. 9. 12. 15:32