일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 미술관 가고싶다.
- icecreamsundae
- PnP
- AC DC
- timetimermod
- Transistor
- 유튜브 서버 터짐
- 필사
- 유튜브 에러
- 교류직류
- 읽었던 것도 다정리해놔야겠다.
- 유튜브 서버
- npn
- 언젠가 나도 내집을 꾸미겠지.
- 내돈
- inhaler
- timetimer
- 일대일변환
- 부분인쇄
- 서버 터짐
- 변수변환
- 유튜브 먹통
- MOD
- 꿀팁
- Pelican
- 필사용 만년필
- 본명조와 본고딕 글씨체가 맘에 들어요.
- 다중적분
- 펠리칸만년필
- 일대일대응
Archives
목록공부/C++ (5)
Woooniverse
[C/C++] const 의 위치별 역할
보호되어 있는 글입니다.
공부/C++
2021. 7. 12. 00:23
[C/C++]함수의 반환형에 &가 들어가는 경우
보호되어 있는 글입니다.
공부/C++
2021. 7. 11. 17:55
[C++]템플릿 클래스와 생성자
보호되어 있는 글입니다.
공부/C++
2021. 7. 8. 15:49
[C++]상속 클래스의 기본생성자는 어떻게 해야될까?
#include #include using namespace std; class Printer { private: string model, printer, person; public: Printer(string _model = "d_model", string _printer = "d_printer", string _person = "d_person") : model(_model), printer(_printer), person(_person) { } virtual void printInfo() { cout
공부/C++
2021. 7. 7. 20:44
[C++] 오퍼레이터 함수의 리턴값은 원래 값에 영향을 못준다.
#include using namespace std; class Account { string name, id; int balance; public: Account(string input_name = "defalut_name", string input_id = "defalut_id", int input_bal = 0) : name(input_name), id(input_id), balance(input_bal) {} //생성자 및 defalut 초기화 string getName(void)const; string getID(void)const; int getBal(void)const; Account operator+(const Account& someone_account) { Account result(t..
공부/C++
2021. 7. 6. 15:46