class Demo_Student {
public static void main(String[] args) {
//创建对象
Phone p = new Phone();
//成员变量
p.brand = "华为";
p.price = 2999;
System.out.println(p.brand + " " + p.price);
//成员方法
p.call();
p.sendMessage();
}
}
/*
*学生类
*属性:性别,年龄,名字
*行为:学习,睡觉
*/
class Phone {
String brand;
int price;
public void call() {
System.out.println("打电话");
}
public void sendMessage() {
System.out.println("发信息");
}
}
|
|