image.png

创建 Java 对象,跟”回”字一样也有好几种写法。虽然简单,但是也涉及到了几个 Java 关键的基础知识,比如反射、克隆、序列化与反序列化,所以面试也经常会遇到,然后不断扩展的问。

第一种:通过 new 关键字创建

这一种没啥好说的,从学 Java 第一天就不停的跟两样东西打交道,一个的是 new 关键字,一个是NullPointerException 😂。代码如下

测试对象代码 Person.java

  1. package cn.coder4j.blog.demo.code.crete.object.method;
  2. import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. /**
  5. * 人员类
  6. */
  7. public class Person implements Cloneable {
  8. /**
  9. * 年龄
  10. */
  11. private Integer age;
  12. /**
  13. * 用户名
  14. */
  15. private String name;
  16. public Person(Integer age, String name) {
  17. this.age = age;
  18. this.name = name;
  19. }
  20. public Person() {
  21. }
  22. /**
  23. * Getter method for property <tt>age</tt>.
  24. *
  25. * @return property value of age
  26. */
  27. public Integer getAge() {
  28. return age;
  29. }
  30. /**
  31. * Setter method for property <tt>age</tt>.
  32. *
  33. * @param age value to be assigned to property age
  34. */
  35. public void setAge(Integer age) {
  36. this.age = age;
  37. }
  38. /**
  39. * Getter method for property <tt>name</tt>.
  40. *
  41. * @return property value of name
  42. */
  43. public String getName() {
  44. return name;
  45. }
  46. /**
  47. * Setter method for property <tt>name</tt>.
  48. *
  49. * @param name value to be assigned to property name
  50. */
  51. public void setName(String name) {
  52. this.name = name;
  53. }
  54. @Override
  55. public String toString() {
  56. return ReflectionToStringBuilder.reflectionToString(this,
  57. ToStringStyle.SHORT_PREFIX_STYLE);
  58. }
  59. @Override
  60. protected Object clone() throws CloneNotSupportedException {
  61. return super.clone();
  62. }
  63. }

创建对象代码

  1. /**
  2. * 通过 new 关键字去创建对象
  3. */
  4. @Test
  5. public void testNew() {
  6. Person person = new Person();
  7. person.setAge(18);
  8. person.setName("kiwi");
  9. System.out.println(person);
  10. }

第二种:通过 class 的 newInstance() 方法

这里就涉及到了 Java 基础里面的反射知识了,大多数框架也是通过这种方式创建的对象,比如说 spring。通过反射拿到 class 对象,再直接调用 newInstance() 方法就可以直接创建出一个对象。获得 class 对象的方法也有好几种,这里直接通过类来获得。代码如下:

创建对象代码

  1. /**
  2. * 通过类反射
  3. */
  4. @Test
  5. public void testClassReflect() throws IllegalAccessException, InstantiationException {
  6. Person person = Person.class.newInstance();
  7. person.setAge(18);
  8. person.setName("kiwi");
  9. System.out.println(person);
  10. }

第三种:通过 constructor 的 newInstance() 方法

与第二种方法一样,同样是通过反射。也是拿到 class 对象,不过这里,拿到对象后,又多了一步去拿构造函数。可能有人觉得疑问了,与第二种达到的结果是一样的,但是还要多写一些代码,为什么还要用他。其实对于有无参构造函数的类来说,两种方法都一样,哪个都可以使用。但是是对于只有有参构造函数的类来说,只能使用第三种。因为第二种无法指定构建函数。所以因为大多数框架使用的都是第二种包括 spring,所以当你的 bean 没有无参构造函数时,框架就会报错,他是不会帮你用第三种的。代码如下:

创建对象代码

  1. /**
  2. * 通过构建函数反射创建
  3. * @throws NoSuchMethodException
  4. * @throws IllegalAccessException
  5. * @throws InvocationTargetException
  6. * @throws InstantiationException
  7. */
  8. @Test
  9. public void testConstructReflect() throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
  10. Constructor<Person> constructor = Person.class.getConstructor();
  11. Person person = constructor.newInstance();
  12. person.setAge(18);
  13. person.setName("kiwi");
  14. System.out.println(person);
  15. }
  16. /**
  17. * 通过有参构造函数反射创建
  18. * @throws NoSuchMethodException
  19. * @throws IllegalAccessException
  20. * @throws InvocationTargetException
  21. * @throws InstantiationException
  22. */
  23. @Test
  24. public void testConstructWithParamReflect() throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
  25. Constructor<Person> constructor = Person.class.getConstructor(Integer.class, String.class);
  26. Person person = constructor.newInstance(18, "kiwi");
  27. System.out.println(person);
  28. }

第四种:通过 clone

可以看到 Person.java 实现了接口 Cloneable 并覆盖了 clone 方法(其实只是调用了父类方法),然后调用对象的 clone 方法就可以创建一个一毛一样的对象。需要注意的是这是是浅克隆,啥是浅克隆?浅克隆是指复制出来的对象的所有变量都含有与原来的对象相同的值,而所有的对其他对象的引用仍然指向原来的对象。也就是说修改克隆后的对象中的引用变量,也会导致原对象也产生变化。深克隆反之。代码如下:

创建对象代码

  1. /**
  2. * 通过克隆
  3. */
  4. @Test
  5. public void testClone() throws CloneNotSupportedException {
  6. Person person = new Person();
  7. person.setAge(18);
  8. person.setName("kiwi");
  9. Person personClone = (Person)person.clone();
  10. System.out.println(personClone);
  11. }

第五种:通过反序列化

序列化与反序列化有很多种,包括 json,xml 其实都是。这里使用的是 java 原生的 Serializable 实现的序列化。很多 rpc 框架,比如 dubbo 使用的就是这种方式,这里需要类实现 jdk 的 Serializable 接口,并且给他一个 serialVersionUID 属性。代码如下:

测试对象代码 PersonDto.java

  1. package cn.coder4j.blog.demo.code.crete.object.method;
  2. import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import java.io.Serializable;
  5. /**
  6. * 人员类
  7. */
  8. public class PersonDto implements Serializable {
  9. private static final long serialVersionUID = 3911118195380172132L;
  10. /**
  11. * 年龄
  12. */
  13. private Integer age;
  14. /**
  15. * 用户名
  16. */
  17. private String name;
  18. public PersonDto(Integer age, String name) {
  19. this.age = age;
  20. this.name = name;
  21. }
  22. public PersonDto() {
  23. }
  24. /**
  25. * Getter method for property <tt>age</tt>.
  26. *
  27. * @return property value of age
  28. */
  29. public Integer getAge() {
  30. return age;
  31. }
  32. /**
  33. * Setter method for property <tt>age</tt>.
  34. *
  35. * @param age value to be assigned to property age
  36. */
  37. public void setAge(Integer age) {
  38. this.age = age;
  39. }
  40. /**
  41. * Getter method for property <tt>name</tt>.
  42. *
  43. * @return property value of name
  44. */
  45. public String getName() {
  46. return name;
  47. }
  48. /**
  49. * Setter method for property <tt>name</tt>.
  50. *
  51. * @param name value to be assigned to property name
  52. */
  53. public void setName(String name) {
  54. this.name = name;
  55. }
  56. @Override
  57. public String toString() {
  58. return ReflectionToStringBuilder.reflectionToString(this,
  59. ToStringStyle.SHORT_PREFIX_STYLE);
  60. }
  61. }

创建对象代码

  1. /**
  2. * 通过反序列化
  3. * @throws IOException
  4. * @throws ClassNotFoundException
  5. */
  6. @Test
  7. public void testSerializable() throws IOException, ClassNotFoundException {
  8. PersonDto person = new PersonDto();
  9. person.setAge(18);
  10. person.setName("kiwi");
  11. // 把对象序列化
  12. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("person"));
  13. oos.writeObject(person);
  14. oos.close();
  15. // 反序列化
  16. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("person"));
  17. PersonDto personSeri = (PersonDto) ois.readObject();
  18. System.out.println(personSeri);
  19. }

这里就说完了,比较常用的几种 Java 对象创建方法了。由此可以看出单例模式是无法保证系统中只有一个对象的。