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
- increment operator
- conversion constructor
- pointer to member data
- discord bot
- placement new
- vector size
- virtual destructor
- virtual function table
- C++
- dynamic_cast
- member function pointer
- this call
- base from member
- 더 지니어스 양면포커
- constructor
- c++ multi chatting room
- c++ basic practice
- std::cout
- std::endl
- virtual inheritance
- delete function
- operator overloading
- virtual function
- suffix return type
- return by reference
- new&delete
- std::ostream
- vector capacity
- diamond inheritance
- std::vector
Archives
- Today
- Total
목록Mutable (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