函数的属性和行为使用

package com;

public class Demo01 {
	public static void main(String[] args) {
		Phone p = new Phone();
		p.brand = "华为";
		p.price = 5000;
		System.out.println(p.brand + "..." + p.price);
		p.call();
		p.sendMessage();
		p.playGame();
	}
}

class Phone {
	//属性
	String brand;
	int price;
	
	//行为
	public void call() {
		System.out.println("打电话");
	}
	
	public void sendMessage() {
		System.out.println("发短信");
	}
	
	public void playGame() {
		System.out.println("玩游戏");
	}
}
上一篇:spring静态代理详解


下一篇:vue备忘录-购物车案例