Java中需要Void类吗
我不清楚Java中的类java.lang.Void
。任何人都可以用一个例子详细说明这一点。
I am not clear with the class java.lang.Void
in Java. Can anybody elaborate in this with an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它还包含
Void.TYPE
,对于使用反射测试返回类型很有用:It also contains
Void.TYPE
, useful for testing return type with reflection:假设您想要一个对某些内容返回 void 的泛型:
Say you want to have a generic that returns void for something:
实际上,在一个实用的例子中,void.class 确实很有用。
假设您需要为类字段创建注释,并且需要定义字段的类以获取有关它的一些信息(例如,如果字段是枚举,则获取潜在值的列表)。在这种情况下,您将需要这样的东西:
像这样使用:
我已经使用它来创建专有格式的类的自定义序列化器。
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:
to be used like this:
I have used this to create a custom serializer of classes to a proprietary format.
来自 Java 文档:
Void 类是一个不可实例化的占位符类,用于保存对表示 Java 关键字 void 的 Class 对象的引用。
表示原始 Java 类型 void 的 Class 对象。
表示原始 Java 类型 void 的 Class 对象。
From the Java docs:
The Void class is an uninstantiable placeholder class to hold a reference to the Class object representing the Java keyword void.
The Class object representing the primitive Java type void.
The Class object representing the primitive Java type void.