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 |
Tags
- virtual function table
- suffix return type
- c++ basic practice
- member function pointer
- delete function
- new&delete
- conversion constructor
- C++
- constructor
- vector capacity
- std::vector
- virtual destructor
- virtual function
- dynamic_cast
- std::ostream
- this call
- 더 지니어스 양면포커
- diamond inheritance
- c++ multi chatting room
- virtual inheritance
- increment operator
- std::cout
- discord bot
- placement new
- vector size
- base from member
- operator overloading
- std::endl
- return by reference
- pointer to member data
Archives
- Today
- Total
목록2024/09/15 (1)
I'm FanJae.
[C++ 기본 연습 문제] Chapter 13. 템플릿(Template) 1
1. Chapter 13 템플릿(Template) 1 1-1. 함수 템플릿의 정의① 인자로 전달되는 두 변수에 저장된 값을 서로 교환하는 SwapData라는 이름의 함수를 템플릿으로 정의해보자. - 그리고 다음 Point 클래스를 대상으로 값의 교환이 이뤄짐을 확인할 수 있도록 main 함수를 구성해보자.class Point{private: int xpos, ypos;public: Point(int x = 0, int y = 0) :xpos(x), ypos(y) { } void ShowPosition() const { cout #include template void SwapData(T& value, T..
C++/Basic Practice
2024. 9. 15. 23:33