现在有
public Interface If;
另外有一个class,包含一个method:
void sort(List unsortedData);
如果另外有
public class cls implements If;
List data;
为什么不能调用
sort(data)?
我觉得的逻辑上是说得过去的啊。
谢谢!
h**j 发帖数: 2033
2
extends If>
【在 g****y 的大作中提到】 : 现在有 : public Interface If; : 另外有一个class,包含一个method: : void sort(List unsortedData); : 如果另外有 : public class cls implements If; : List data; : 为什么不能调用 : sort(data)? : 我觉得的逻辑上是说得过去的啊。
g****y 发帖数: 436
3
谢谢。。请问这个知识点在哪本书上有介绍?我在看thinking in java,发现上面没有
讲到这个。
【在 h**j 的大作中提到】 : : extends If>
g****y 发帖数: 436
4
Generic Methods。。。thanks
【在 g****y 的大作中提到】 : 谢谢。。请问这个知识点在哪本书上有介绍?我在看thinking in java,发现上面没有 : 讲到这个。