编写一个手机类(Mobile)

xiaoxiao2021-02-28  25

/*编写一个手机类(Mobile),包括手机品牌(brand)、手机型号(type), * 方法包括显示手机信息,并编写测试类进行对象的创建*/ package cyff; public class Mobile {// 定义Mobile类 String brand, type;// 成员变量 public void information() {// 成员方法 System.out.println(type); } public static void main(String[] args) { Mobile P1 = new Mobile();// 声明并创建对象 P1.brand = "联想";// 给P1的属性赋值 P1.type = "联想ZUK Edge"; Mobile P2 = new Mobile();// 声明并创建对象 P2.type = "联想";// 给P2的属性赋值 P1.information(); P2.information(); }
转载请注明原文地址: https://www.6miu.com/read-800233.html

最新回复(0)