<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>toburau</author_name>
  <author_url>https://blog.hatena.ne.jp/toburau/</author_url>
  <blog_title>ゲームが作れるようになるまでがんばる日記</blog_title>
  <blog_url>https://toburau.hatenablog.jp/</blog_url>
  <categories>
    <anon>C++</anon>
  </categories>
  <description>クラスのメンバ関数名の後ろにconstを付けるとオブジェクトの内容を変更できなくなる。 class Test { int num; public: int func(int n) const { num = n; // コンパイルエラー } }; mutableキーワードを付けたメンバ変数はconstメンバ関数でも値を変更できる。 class Test { int num; mutable int num2; public: int func(int n) const { //num = n; num2 = n; // コンパイルできる } }; constメンバ関数でも値を変更できないだけで…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Ftoburau.hatenablog.jp%2Fentry%2F20090320%2F1237559888&quot; title=&quot;constメンバ関数とmutable - ゲームが作れるようになるまでがんばる日記&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2009-03-20 23:38:08</published>
  <title>constメンバ関数とmutable</title>
  <type>rich</type>
  <url>https://toburau.hatenablog.jp/entry/20090320/1237559888</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
