2011-03-25から1日間の記事一覧

Accelerated C++ Chapter 09

どもです。 恒例の Accelerated C++ です。Chapter09 です。 いってみよ! メモ struct (構造体) C++ では型になる。 メンバ関数 struct foo { int x; int get() const { return x; } // <-- メンバ関数 } 「::」演算子 int foo::func() const { return ::fun…