t1.v_set1(); t2->v_set2();
Example(int x, int y) { this->x = x; this->y = y; }
Example t1(10, 20); // Example 型オブジェクト Example *t2 = new Example (30, 40); // Example 型オブジェクトへのポインタ
Example(int x1, int y1)
{
x = x1;
y = y1;
}
// 以下のように,メンバー初期設定リストを使用しても良い
Example(int x1, int y1) : x(x1), y(y1) {}