Java:方法参数中的泛型枚举

发布于 2024-10-05 09:01:08 字数 409 浏览 1 评论 0 原文

对应以下问题:

Java:方法中的枚举参数

我想知道,如何我可以格式化代码以一般要求枚举吗?

Foo.java

public enum Foo { 
    a(1), b(2);
}

Bar.java

public class Bar {
    public Bar(generic enum);
}

稍后我将拥有更多枚举类,例如“foo”,但您仍然可以创建包含任何类型枚举类的 bar。顺便说一句,我有“jdk1.6.0_20”...

Correspondig the following question:

Java: Enum parameter in method

I would like to know, how can I format the code to require enums generically.

Foo.java

public enum Foo { 
    a(1), b(2);
}

Bar.java

public class Bar {
    public Bar(generic enum);
}

Later on I'll have more enum classes like "foo", but you can still create bar containing any kind of enum class. I have "jdk1.6.0_20" by the way...

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

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

发布评论

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

评论(3

颜漓半夏 2024-10-12 09:01:08

请参阅 EnumSet 中的方法以供参考,例如

public static <E extends Enum<E>> EnumSet<E> of(E e)

(此方法返回一个EnumSet 包含给定 Enum 元素中的一个元素 e)

因此,您需要的通用边界是: >


实际上,您可能会创建 Bar本身通用:

public class Bar<E extends Enum<E>> {

    private final E item;

    public E getItem(){
        return item;
    }

    public Bar(final E item){
        this.item = item;
    }
}

您还可以添加一个工厂方法,例如 fromwith 等。

public static <E2 extends Enum<E2>> Bar<E2> with(E2 item){
    return new Bar<E2>(item);
}

这样,在客户端代码中您只需编写一次通用签名:

// e.g. this simple version
Bar<MyEnum> bar = Bar.with(MyEnum.SOME_INSTANCE);
// instead of the more verbose version:
Bar<MyEnum> bar = new Bar<MyEnum>(MyEnum.SOME_INSTANCE);

参考:

See the methods in EnumSet for reference, e.g.

public static <E extends Enum<E>> EnumSet<E> of(E e)

(This method returns an EnumSet with one element from a given Enum element e)

So the generic bounds you need are: <E extends Enum<E>>


Actually, you will probably make Bar itself generic:

public class Bar<E extends Enum<E>> {

    private final E item;

    public E getItem(){
        return item;
    }

    public Bar(final E item){
        this.item = item;
    }
}

You may also add a factory method like from, with etc.

public static <E2 extends Enum<E2>> Bar<E2> with(E2 item){
    return new Bar<E2>(item);
}

That way, in client code you only have to write the generic signature once:

// e.g. this simple version
Bar<MyEnum> bar = Bar.with(MyEnum.SOME_INSTANCE);
// instead of the more verbose version:
Bar<MyEnum> bar = new Bar<MyEnum>(MyEnum.SOME_INSTANCE);

Reference:

吻安 2024-10-12 09:01:08

您也可以这样做:

public class Bar {
    public Bar(Enum<?> e){}
}

每个枚举都扩展 Enum。如果您需要枚举常量,则可以使用它:

e.getDeclaringClass().getEnumConstants()

You can also do it this way:

public class Bar {
    public Bar(Enum<?> e){}
}

Every enumeration extends Enum. Then you can use this if you need the enum constants:

e.getDeclaringClass().getEnumConstants()
农村范ル 2024-10-12 09:01:08
public class bar {
    public <E extends Enum<E>> void bar(E enumObject);
}

bar 方法现在可以接收任何类型的枚举。

public class bar {
    public <E extends Enum<E>> void bar(E enumObject);
}

The bar method can now receive any kind of enum.

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