简体   繁体   English

一个带有泛型参数的java方法 - 为什么我不能传递一个带有泛型参数的对象,该参数是方法参数的子类?

[英]A java method that has a generic parameter- why can't I pass an object with a generic parameter that is a subclass of the method arguments?

What I mean is, in the code below: 我的意思是,在下面的代码中:

class base {

}

class derived extends base {

}

class WTF {

    public void func(List<base> list) {

    }

    public void tryit() {
        func(new List<base>()); // ok
        func(new List<derived>()); // not ok
    }
}

But if the function simply took an object of base, it could take a derived object. 但是如果函数只是一个base的对象,它可能需要一个派生对象。 Why is this? 为什么是这样?

func needs to be defined as func需要定义为

public void func(List<? extends base> list) { ... }

This is because a List<derived> is not actually a List<base> , because a List<base> allows any kind of base in it, while a List<derived> only allows derived and its subclasses. 这是因为List<derived>实际上不是List<base> ,因为List<base>允许其中包含任何类型的base ,而List<derived>仅允许derived及其子类。 Using ? extends base ? extends base ? extends base ensures that you can't add anything but null to the List , since you're not sure what subclasses of base the list might allow. ? extends base确保您不能向List添加任何null ,因为您不确定列表可能允许的base类。

As an aside, you should try to follow standard Java naming conventions... classes starting with lowercase letters look strange, like they're primitives. 顺便说一下,你应该尝试遵循标准的Java命名约定......以小写字母开头的类看起来很奇怪,就像它们是原始的一样。

This is because if passing in a List<derived> was allowed, func() would be able to add base-typed elements to the list, thus invalidating the generic contract of the list (which should only allow for derived-typed contents) 这是因为如果允许传入List <derived>,func()将能够将基类型元素添加到列表中,从而使列表的通用契约无效(这应该只允许派生类型的内容)

if on the other hand you define func as 另一方面,如果你将func定义为

public void func(List<? extends base> list)

you can still retrieve base-typed elements from list, but just won't be able to add any new elements to it, which is exactly the behavior you want. 您仍然可以从列表中检索基本类型的元素,但只是无法向其添加任何新元素,这正是您想要的行为。

To explain this behaviour of java, look at this example 要解释java的这种行为,请看这个例子

void addItem(List<Base> list) {
    list.add(new Base());
}

List<Base> l1 = new ArrayList<Base>();
addItem(l1);
Base b = l1.get(0);

List<Derived> l2 = new ArrayList<Derived>();
addItem(l2);
Derived d = l2.get(0); // Would cause runtime exception.

That's why this code will not compile in the first place. 这就是为什么这段代码不会首先编译的原因。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM