Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Flutter 예제
- Flutter Example
- Row
- sqlite
- Cached Image
- MainAxisAlignment
- node.js
- InkWell
- Image.network
- Snackbar
- CrossAxisAlignment
- Flutter 강좌
- 반석천
- AppBar
- HTTP
- ListTile
- Load Image
- navigator
- listview
- FutureBuilder
- Row Widget
- ListView.builder
- Hello World
- Flutter 앱 배포
- Flutter Tutorial
- Column Widget
- flutter
- WillPopScope
- Networking
- Scaffold
Archives
- Today
- Total
목록클래스 상속 (1)
꿈꾸는 시스템 디자이너
C++ 클래스 상속 예제
간단한 C++ 클래스 상속 예제를 설명한다. /* * Parent.h * * Created on: 2014. 10. 1. * Author: here4you */ #ifndef PARENT_H_ #define PARENT_H_ #include using namespace std; class Parent { // Child 클랙스가 사용할 변수들이므로 private이 아닌 protected로 선언 protected: string name; string value; public: // 아규먼트가 없는 기본 생성자 Parent(); // name값을 아규먼트로 가지는 생성자 Parent(string name); // name값과 value값을 아규먼트로 가지는 생성자 Parent(string name, stri..
Development/C++
2014. 10. 2. 16:18