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
- std::cout
- base from member
- operator overloading
- vector size
- return by reference
- conversion constructor
- diamond inheritance
- c++ multi chatting room
- std::endl
- vector capacity
- c++ basic practice
- member function pointer
- virtual function
- 더 지니어스 양면포커
- this call
- pointer to member data
- suffix return type
- std::ostream
- placement new
- delete function
- virtual destructor
- virtual function table
- new&delete
- std::vector
- constructor
- increment operator
- virtual inheritance
- dynamic_cast
- discord bot
- C++
Archives
- Today
- Total
목록2024/08/07 (1)
I'm FanJae.
[C++] Function I
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. - Function 이라는 것은 원래 C 언어에도 존재하던 개념이다.- C 언어에는 없는 C++ 함수만의 특징들이 존재한다. 1. Default parameter#include void foo(int a, int b = 0, int c = 0){ std::cout - C 언어에서는 함수 인자에 값을 넣는 표기 사용이 불가능하다.- 반면, C++에서는 함수 인자에 Default 값을 넣는 것이 가능하다. ※ Default parameter라는 것은 함수 호출시 인자를 전달하지 않으면, 미리 지정된 인자 값을 사용하게 한다는 것이다. 1-1. Default parameter 사용시 주의 사항① 함수의 마지막 인자부터 차..
C++/Basic
2024. 8. 7. 12:08