package demo;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
package demo;
public class Phonetest {
?? ?public static void main(String[] args) {
?? ?Phone p=new Phone();
?? ?p.brand="小米";
?? ?p.price=1998.98;
?? ?System.out.println(p.brand);
?? ?System.out.println(p.price);
?? ?p.call();
?? ?p.playgame();
?? ?}
}
?
public class Phone {
?? ?String brand;
?? ?double price;
?? ?public void call() {
?? ??? ?System.out.println("手機在打電話");
?? ?}
?? ?public void playgame() {
?? ??? ?System.out.println("手機在玩游戲");
?? ?}
}
?