传递泛型类型内部类

发布于 2025-01-14 04:36:31 字数 834 浏览 0 评论 0原文

这是以下示例:

import lombok.Builder;
import lombok.Getter;
import lombok.Singular;

import java.util.List;

@Getter
@Builder
public class GenericsType<T> {

    @Singular("entry") 
    private List<Animal> list;

    @Builder
    private static class Animal<T> {
        T test;
    }

    public void main(String args[]){

        GenericsType.<String>builder()
                .entry(Animal.<String>builder().test("my object").build())
                .build();
    }
}

有没有一种方法可以只传递通用 一次?实际上内部类应该已经知道它的类型。

GenericsType.<String>builder()
                .entry(Animal.builder().test("my object").build())
                .build();

Here is following example:

import lombok.Builder;
import lombok.Getter;
import lombok.Singular;

import java.util.List;

@Getter
@Builder
public class GenericsType<T> {

    @Singular("entry") 
    private List<Animal> list;

    @Builder
    private static class Animal<T> {
        T test;
    }

    public void main(String args[]){

        GenericsType.<String>builder()
                .entry(Animal.<String>builder().test("my object").build())
                .build();
    }
}

Is there a way just to pass the generic <String> one time? Actually the inner class should already know its type.

GenericsType.<String>builder()
                .entry(Animal.builder().test("my object").build())
                .build();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红玫瑰 2025-01-21 04:36:31

这是 Java 编译器的限制。虽然在这种情况下看起来很明显,类型参数必须是 String,但推断并不像看起来那么容易:
编译器必须通过 test("my object") 将类型信息从 build() 向后传播到 builder() 方法。

新的编译器版本可能支持此类推断,但至少 javac 11 不支持。

That is a limitation of the Java compiler. Although it looks obvious in this case that the type parameter must be String, inferring that is not as easy as it seems to be:
The compiler has to propagate the type information backwards from build() via test("my object") to the builder() method.

New compiler versions may support such inference, but at least javac 11 does not.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文