摘要:
package CloneTest; class Dog implements Cloneable{ private String dname; private Integer dage; public Dog clone() throws CloneNotSupportedException{ D 阅读全文
摘要:
报错:The method PrintArray(T[]) in the type GenericTest is not applicable for the arguments (char[]) 传参出错 一开始想为什么会出错,是数组的原因吗?又写了一个 这次没报错,究竟是为什么。后来仔细看了泛型 阅读全文