コード例 #1
0
ファイル: Lesson6_7_8.cpp プロジェクト: ephebe/CPPSample
void Lesson6() {
	Demo t;
	t.a = 11;
	t.b = 22;

	cout << t.do_something() << endl;
}
コード例 #2
0
ファイル: MyConsoleApp1.cpp プロジェクト: eastpoem/TestProj
int _tmain(int argc, _TCHAR* argv[])
{
	cout << endl;

	Demo t;
	t.setA(11);
	t.setB(22);
	t.setB(22);

	cout << endl;

	cout << t.do_something() << endl;

	return 0;
}