What is the need of Void class in Java [duplicate]

我怕爱的太早我们不能终老 提交于 2019-12-17 15:38:05

问题


I am not clear with the class java.lang.Void in Java. Can anybody elaborate in this with an example.


回答1:


It also contains Void.TYPE, useful for testing return type with reflection:

public void foo() {}
...
if (getClass().getMethod("foo").getReturnType() == Void.TYPE) ...



回答2:


Say you want to have a generic that returns void for something:

abstract class Foo<T>
{
    abstract T bar();
}

class Bar
    extends Foo<Void>
{
    Void bar()
    {
        return (null);
    }
}



回答3:


Actually there is a pragmatic case where void.class is really useful. Suppose you need to create an annotation for class fields, and you need to define the class of the field to get some information about it (in example, if the field is an enum, to get list of potential values). In that case, you would need something like this:

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface PropertyResourceMapper
{
    public Class acceptedValues() default void.class;
}

to be used like this:

@PropertyResourceMapper(acceptedValues = ImageFormat.class, description = "The format of     the image (en example, jpg).")
private ImageFormat format;

I have used this to create a custom serializer of classes to a proprietary format.




回答4:


From the Java docs:

public final class Void
extends Object

The Void class is an uninstantiable placeholder class to hold a reference to the Class object representing the Java keyword void.

static Class<Void> TYPE 

The Class object representing the primitive Java type void.

TYPE
public static final Class<Void> TYPE

The Class object representing the primitive Java type void.



来源:https://stackoverflow.com/questions/2352447/what-is-the-need-of-void-class-in-java

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!