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
- conversion constructor
- virtual destructor
- base from member
- 더 지니어스 양면포커
- virtual function table
- discord bot
- this call
- member function pointer
- pointer to member data
- suffix return type
- delete function
- increment operator
- c++ multi chatting room
- diamond inheritance
- dynamic_cast
- std::cout
- std::vector
- return by reference
- new&delete
- c++ basic practice
- virtual inheritance
- C++
- std::ostream
- placement new
- vector capacity
- virtual function
- vector size
- operator overloading
- constructor
- std::endl
Archives
- Today
- Total
목록2024/09/27 (1)
I'm FanJae.
[C++ Intermediate] Max Implement
1. Max Implement#include #include templateconst T& mymax(const T& obj1, const T& obj2){ return obj1 1-1. 알고리즘 함수가 사용하는 정책(비교방식)을 변경하는 방법.① 알고리즘 함수가 사용하는 정책(비교방식)을 변경하고 싶을때 보통 이항 조건자를 사용한다. (C++ STL)std::sort(v.begin(),v.end(), [](auto &a, auto&b) { return a.size() #include #include templateconst T& mymax(const T& obj1, const T& obj2){ return obj1 b.size(); } ); auto ret4 = mymax(s1, ..
C++/Intermediate
2024. 9. 27. 20:35