声明对象时的初始对象类型

时间:2018-11-03 20:39:55

标签: java

我想知道初始对象类型在所有对象声明中的作用。这两种声明之间有什么区别?

    Set<Integer> tempSet = new HashSet<>();
    HashSet<Integer> anotherSet = new HashSet<>();

tempSet的类型是否为SetanotherSet的类型为HashSet

那一个呢?

    Object myString = "Hello";
    String anotherString = "World";

0 个答案:

没有答案