zoukankan      html  css  js  c++  java
  • 新建对象:反射会调用构造函数,clone不会调用构造函数

    class Ins implements java.lang.Cloneable { 

        public Ins() {
            System.out.println("Construct called");

        }  

        @Override
        public Ins clone() throws CloneNotSupportedException {
            return (Ins) super.clone();
        }

    }


    public class ConstructTest {

     @Test
        public void test() throws InstantiationException, IllegalAccessException, CloneNotSupportedException {
            System.out.println("\n---new Ins() begin---");
            Ins ins1 = new Ins(); 
            System.out.println("---new Ins() end---");
            System.out.println("\n---Ins.class.newInstance() begin---");
            Ins ins2 = Ins.class.newInstance(); 
            System.out.println("---Ins.class.newInstance() end---");
            System.out.println("\n---ins1.clone() begin---");
            Ins ins3 = ins1.clone(); 
            System.out.println("---ins1.clone() end---");
        }

    }


    输出:

    ---new Ins() begin---
    Construct called
    ---new Ins() end---

    ---Ins.class.newInstance() begin---
    Construct called
    ---Ins.class.newInstance() end---

    ---ins1.clone() begin---
    ---ins1.clone() end---

  • 相关阅读:
    协议与接口相关
    jmeter 使用(1)
    jmeter 压力测试
    shell脚本的规则
    charles的原理及使用
    Linux环境部署和项目构建
    面向对象
    python 基础练习题
    jmeter 使用(2)
    Ext.apply
  • 原文地址:https://www.cnblogs.com/leeeee/p/7276763.html
Copyright © 2011-2022 走看看