String obj = null; obj= new String("Samuel"); //vs String obj = null; obj="Samuel";
这两种初始化String的方法有什么区别吗?
java
java ×1