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
- virtual destructor
- dynamic_cast
- c++ basic practice
- std::cout
- std::vector
- this call
- virtual inheritance
- C++
- 더 지니어스 양면포커
- placement new
- vector capacity
- diamond inheritance
- member function pointer
- vector size
- operator overloading
- c++ multi chatting room
- std::endl
- conversion constructor
- pointer to member data
- return by reference
- virtual function table
- std::ostream
- new&delete
- discord bot
- suffix return type
- constructor
- increment operator
- delete function
- virtual function
- base from member
Archives
- Today
- Total
목록2024/08/17 (1)
I'm FanJae.
[c++] const member function, mutable
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. const 객체에서 발생할 수 있는 문제점#include class Point{public: int xpos, ypos; Point(int x, int y) : xpos{x}, ypos{y} {} void set(int x, int y) { xpos = x; ypos = y; } void print() { std::cout - 테스트를 위해 public에 멤버 데이터를 둔 상태이다. - 사실 이 예제는 아무런 문제가 없다. (실행만 생각한다면 말이다.)- 이때 객체를 const로 만들때 상황을 생각해보면, 아래와 같은 문제가 발생한다. 1-1. print()와 같은 값을 바꾸지 않는 함수도 에러 발생#incl..
C++/Basic
2024. 8. 17. 17:39