赞
踩
开始时间: April 10, 2024
结束时间: April 16, 2024
阶段: Done
class Cat{
String name;
int age;
String color;
}
// new 的过程:加载类的信息
// 属性信息
// 方法信息
Cat cat = new Cat();
cat.name = "Root";
cat.age = 18;
cat.color = "white";
Person p = new Person();
p.name = “jack”;
p.age = 10
p.name ="jack",p.age = 10
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。