博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.lang.Void
阅读量:6098 次
发布时间:2019-06-20

本文共 892 字,大约阅读时间需要 2 分钟。

hot3.png

package java.lang;/** * The {@code Void} class is an uninstantiable placeholder class to hold a * reference to the {@code Class} object representing the Java keyword * void. * * @author  unascribed * @since   JDK1.1 */public finalclass Void {    /**     * The {@code Class} object representing the pseudo-type corresponding to     * the keyword {@code void}.     */    @SuppressWarnings("unchecked")    public static final Class
TYPE = (Class
) Class.getPrimitiveClass("void"); /* * The Void class cannot be instantiated. */ private Void() {}}
Class
clazz = Class.forName("jdk.number.integer.Test01"); Method method = clazz.getMethod("testMethod", null); Class
clazzRT = method.getReturnType(); System.out.println(clazzRT == Void.TYPE);

返回值是Void,这是一个占位符不能被实例化 ,大多数用来判断方法的返回值是不是空的

转载于:https://my.oschina.net/bughope/blog/841112

你可能感兴趣的文章
[TC13761]Mutalisk
查看>>
三级菜单
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>
Ext Js简单事件处理和对象作用域
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
12.通过微信小程序端访问企查查(采集工商信息)
查看>>
WinXp 开机登录密码
查看>>
POJ 1001 Exponentiation
查看>>
HDU 4377 Sub Sequence[串构造]
查看>>
云时代架构阅读笔记之四
查看>>
WEB请求处理一:浏览器请求发起处理
查看>>
Lua学习笔记(8): 元表
查看>>
PHP经典算法题
查看>>
LeetCode 404 Sum of Left Leaves
查看>>
醋泡大蒜有什么功效
查看>>
hdu 5115(2014北京—dp)
查看>>
数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)...
查看>>