Java中创建对象的方式有哪些?

1.使用new关键字创建对象

Student student = new Student();

2.使用clone方法创建对象

        在我们调用clone方法前,需要先实现cloneable接口并重写clone方法,在调用clone方法时jvm会创建一个新的对象,并将要clone的对象拷贝到新的对象当中。

Person p2 = (Person) p1.clone();

3.使用反射创建对象

直接调用class的newInstance方法创建对象,代码如下:

Student student = Student.class.newInstance();

通过构造方法的newInstance方法创建对象,代码如下:

//默认空参构造器构造
Student student = Student.class.getConstructor().newInstance();
//指定构造器构造
Student student1=Student.class.getConstructor(int.class).newInstance(1);

4.序列化创建对象

        在类上实现Serializable接口,当序列化时会将对象转化为字节流,反序列化则会将字节流再转换为java对象,这时jvm会创建一个单独的对象。

Student student = (Student) new ObjectInputStream(new
                             FileInputStream("file.txt")).readObject();

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值