C++におけるthisポインタの型

くだらないっちゃあ, くだらないのだが, C++でthisポインタの型ではまったのでメモ.

クラス型 X のメンバー関数に対する this ポインターの型は、X* const です。 メンバー関数が const 修飾子を用いて宣言されている場合、 クラス X のそのメンバー関数に対する this ポインターの型は、const X* const です

http://pic.dhe.ibm.com/infocenter/lnxpcomp/v111v131/index.jsp?topic=%2Fcom.ibm.xlcpp111.linux.doc%2Flanguage_ref%2Fcplr035.html