什么是更好的性能使用
import some.directory.*;
要么
import some.directory.classNeeded;
或者这不会对性能有任何改变,因为编译器会对类中未使用的库进行折扣吗?所以它是为了方便而实现的?
java
java ×1