📜  泛型变量 java 代码示例

📅  最后修改于: 2022-03-11 14:52:32.698000             🧑  作者: Mango

代码示例1
List yourList=new ArrayList<>();//short form of Arraylist as the compiler infers the  from the left side of the assignment
yourList.add("Hello");
yourList.add(123);//compiler Error
String firstElement=yourList.get(0);
Integer firstElement=yourList.get(0);//compiler Error