本文主要是介绍final_封装_多态_servletJAVA043-047,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
来源:http://www.bjsxt.com/
1、S01E043_01final修饰变量、方法和类
(1)修饰变量:常量;
(2)修饰方法:该方法不可被子类重写,但可以被重载;
(3)修饰类:修饰的类不能有子类,不能被继承。如:Math、String。
2、S01E044_01面向对象三大特性之一:封装/隐藏(encapsulation)
(1)封装的作用:隐藏对象内部的复杂性,只对外公开简单的接口。便于外界调用,从而提高系统的可扩展性、可维护性。
(2)程序设计追求“高内聚,低耦合”。
高内聚就是类的内部数据操作细节自己完成,不允许外部干涉;
低耦合就是仅暴露少量的方法给外部使用。
3、S01E045_01面向对象三大特性之一:多态(polymorphism)
public class Animal{public void voice(){String str;System.out.println("普通动物叫声!");}
}
class Cat extends Animal{public void voice(){System.out.println("喵喵喵");}public void catchMouse(){System.out.println("抓老鼠");}
}
class Tiger extends Animal{public void voice(){System.out.println("哇哇哇");}
}
//////////////////////////////////////////////////
public class Test{public static void testAnimalVoice(Animal c){c.voice();if(c instanceof Cat){((Cat)c).catchMouse();//强制类型转换,否则编译器不认}}public static void main(String[] args){Animal a = new Cat();Animal b = new Tiger();testAnimalVoice(a);testAnimalVoice(b);Cat d = (Cat)a;//a.catchMouse()编译器不认,要强制类型转换d.catchMouse();}
}
4、S01E046_01多态的内存分析
首先javac Test.java–>>java Test,扫描代码,一次加载全部的类;
this指向最终的对象;
public static void main(String[] args){Animal a = new Cat();Cat a2 = (Cat)a;testAnimalVoice(a);
5、S01E047_01模拟servlet中方法的调用
main方法中的s.service()调用的doGet()是MyServlet中的doGet(),
因为调用时HttpServlet中的doGet()相当于this.doGet(),而this全都是最终的对象new MyServlet()
public class HttpServlet{public void service(){System.out.println("HttpServlet.service()");doGet();//相当于this.doGet();}public void doGet(){System.out.println("HttpServlet.doGet()");}
}
//////////////////////////////////////////
public class MyServlet extends HttpServlet{public void doGet(){System.out.println("MyServlet.doGet()");}
}
//////////////////////////////////////////
public class Test{public static void main(String[] args){HttpServlet s = new MyServlet();s.service();}
}
这篇关于final_封装_多态_servletJAVA043-047的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!