zoukankan      html  css  js  c++  java
  • java 小总结,以后复习看以看

    1.java中父类引用指向子类
    如果父类和子类中有相同的方法,执行子类的方法
    Graphics gc= new Graphics();  Graphics图形
        gc.calArea();
        gc = new Rect();  Rect矩形
        gc.calArea();    
        gc = new Circle();  Circle圆形
        gc.calArea();
    2.struts 1和struts2的区别
    struts1 要求继承一个基类 DispatchActionSupport或action   struts1是单例模式是线程安全的,因为只有一个实例处理所有请求 依赖于servletapi  以为一个action在被调用时 需要把httpservletrequest 和 httpservletresponse 传递给 execute方法。
    struts2 要求继承一个基类 ActionSupport  struts2为每一个请求产生一个实例因此没有线程安全问题  struts2的action不依赖于容器允许action脱离容器单独测试。如果需要也可以访问初始的 request 和response
    3.为什么要用ssh
    struts 基于mvc模式很好的将应用程序分层使开发者更专注于业务逻辑实现,struts有着丰富的taglib(if elseif iterator等)如果能灵活运用可以大大提高开发效率
    hibernate :为java提供了一个高效的易用的对象关系映射框架 hibernate是一个轻量级框架。

  • 相关阅读:
    大数据HIve
    大数据笔记
    [Leetcode]653.Two Sum IV
    [Leetcode]652.Find Duplicate Subtrees
    [Leetcode]650.2 Keys Keyboard
    [Leetcode]648.Replace Words
    [Leetcode Weekly Contest]173
    [总结]最短路径算法
    [Leetcode]647.Palindromic Substrings
    [Leetcode]646.Maximum Length of Pair Chain
  • 原文地址:https://www.cnblogs.com/mingtian521/p/3127130.html
Copyright © 2011-2022 走看看