java创建对象方法有哪些 java创建对象有几种方法

主机教程 建站分享 2年前 (2022-09-15) 185次浏览

文章摘要:java创建对象方法有哪些 java创建对象有几种方法

java中创建对象方法有:1.使用new关键字创建;2.使用Class类创建;3.使用构造函数创建;4.使用反 […]

java中创建对象方法有:1.使用new关键字创建;2.使用Class类创建;3.使用构造函数创建;4.使用反序列化创建;

java中创建对象方法有以下几种

1.使用new关键字创建

public class Test {

public static void main(String[] args) {

Test t1 = new Test();

Test t2 = new Test("张三");

}

}

2.使用Class类创建

public static void main(String[] args) throws Exception {

String className = "org.b3log.solo.util.Test";

Class clasz = Class.forName(className);

Test t = (Test) clasz.newInstance();

}

3.使用构造函数创建

Constructor constructor = Student.class.getInstance();

Student stu = constructor.newInstance();

4.使用反序列化创建

ObjectInputStream in = new ObjectInputStream (new FileInputStream("data.obj"));

Student stu3 = (Student)in.readObject();


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:java创建对象方法有哪些 java创建对象有几种方法
文章链接:http://www.7966.org/post/11916.html
转载请注明出处

喜欢 (0)