zoukankan      html  css  js  c++  java
  • this小案例

    public class Son extends Parent {
        
        public String name="jack";
        
        public void init(){
            super.init();
            System.out.println(this.name);
        }
        
        public static void main(String[] args) {
            Son son = new Son();
            son.init();  //init(son)
            System.out.println("## " + son.name);
            
            Parent p = new Son();
            System.out.println("** " + p.name);
            
        }
    
    }
    
    public class Parent {
        
        public String name="tom";
    
        public void init() {
            System.out.println(this.name);
        }
        
    }
    ————————————————————————————————
    public class Parent {
    
        public void init() {
            System.out.println("1 init parent");
            this.demo();
        }
        
        public void demo() {
            System.out.println("2 demo parent");
        }
    
    }
    
    public class Son extends Parent {
        
        public void init(){
            super.init();
            System.out.println("3 init son");
            this.demo();
        }
        
        public void demo() {
            System.out.println("4 demo Son");
        }
        
        public static void main(String[] args) {
            //当前运行类 Son
            Son son = new Son();
            son.init();  //init(son)
        }
    
    }

    以上两种情况运行结果是?为什么?(成员变量和成员方法)

    tom,jack,##jack,**tom

    1,4,3,4

    看下这段代码,以前没看懂一些代码为什么经常调用空方法,这类this通常是具体实现类对象,用途可以覆盖父类,没覆盖的话就执行父类的这个方法

    public abstract class MGenericServlet2 implements Servlet,ServletConfig {
        
        private ServletConfig config;
        
        
        public void init(ServletConfig config) throws ServletException {
            //保存当前servlet的初始化信息
            this.config = config;
            System.out.println("@@@@init");
            this.init();
        }
        
        public void init() throws ServletException {
            
        }
    }
    
    。。。。。。。。。。。。。
    public class DemoServlet extends MGenericServlet2 {
        
        //进行初始化操作
    //    @Override
    //    public void init(ServletConfig config) throws ServletException {
    //        //父类初始化
    //        super.init(config);
    //        //子类初始化
    //        //xxxxx
    //    
    //    }
        
        
        @Override
        public void init() throws ServletException {
            System.out.println("........");
        }
    }
  • 相关阅读:
    PHP线程安全和非线程安全有什么区别
    SHOW SLAVE STATUS 详解
    linux 2>&1
    crontab 例行性排程
    clang-format 数组初始化,多行模式
    windows 10 1909 无法启用 .NET Framework 解决
    SysCtlDelay 实现延时
    wpa_supplicant 检测错误密码
    swig python dynamic module does not define init function
    讯飞错误码10116
  • 原文地址:https://www.cnblogs.com/cxzdy/p/5570919.html
Copyright © 2011-2022 走看看