(2)思想特点: A:是一种更符合我们思考习惯的思想。 B:把复杂的事情简单化。 C:让我们从执行着变成了指挥者。 (3)案例: A:买电脑 B:吃饭,洗衣服 C:我要喝水 (4)把大象装进冰箱,让大家对面向对象有一点点的了解。 面向过程: class Demo { public static void main(String[] args) { open(); in(); close(); } public static void open() { System.out.println("开门"); } public static void in() { System.out.println("我要进去"); } public static void close() { System.out.println("关门"); } } 面向对象: 如何让我们的代码更符合面向对象思想 A:有哪些类 B:类有哪些功能 C:类与类的关系 class 大象 { public void in() { System.out.println("我要进去"); } } class 冰箱 { public void open() { System.out.println("开门"); } public void close() { System.out.println("关门"); } } class Test { public static void main(String[] args) { 冰箱 b = new 冰箱(); 大象 d = new 大象(); b.open(); d.in(); b.close(); } } |