Exemplo n.º 1
0
int main()
{
	Demo a;
	MyCar car;
		a.setName("masuchen");
		cout << a.getName() << endl;
		car.setPrice(100);
		cout <<car.getPrice() << endl;
		while (1);
//	return 0;
}