3.2.4创建对象,使用对象
class Car //对Car这类事物进行描述
{
string color = “red”;
int num = 4;
void show()
{
System.out.println(“color=”+color”..num=”+num);
}
}
class CarDemo
{
public static void main(Stringp[] args)
{
Car c = new Car();//建立对象
c.color = “black”;//对对象的属性进行修改
c.show();//适用对象的功能。
}
}
3.2.5对象内存结构
Car c1 = new Car();c1.color = “blue”
Car c2 = new Car();