黑马程序员技术交流社区

标题: 手机面向对象 [打印本页]

作者: huizhong    时间: 2016-7-5 23:54
标题: 手机面向对象
/*
手机的
属性:品牌(brand)价格(price)
行为:打电话(call)发信息(sentMessage)玩游戏(playGame)
*/
class Phone_Test {
        public static void main(String[] args) {
                Phone p = new Phone();
                p.brand = "锤子";
                p.price = 1999;
                System.out.println(p.brand+"..."+p.price);
                p.call();
                p.sentMessage();
                p.playGame();
        }
}
class Phone {
        String brand;
        int price;
        public void call () {
                System.out.println("打电话");
        }
        public void sentMessage () {
                System.out.println("发信息");
        }
        public void playGame() {
                System.out.println("玩游戏");
        }
}

作者: 呆呆的小呆    时间: 2016-7-6 00:08
太棒啦 赶快收藏
作者: 新人—小明同学    时间: 2016-7-6 00:42
在基础班了吗{:2_36:}加油↖(^ω^)↗
作者: Huyaal    时间: 2016-7-6 02:01
支持一下下
作者: huizhong    时间: 2016-7-6 07:36
水贴水黑马币的
作者: geeksi    时间: 2016-7-6 08:19
这很锤子
作者: yw201605    时间: 2016-7-6 10:46
占个沙发{:2_32:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2