gpt4 book ai didi

java - getClass().getName() 什么时候返回 void?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:09:32 24 4
gpt4 key购买 nike

Class.getName() 的 java 文档说:

Returns the name of the entity (class, interface, array class, primitive type, or void) represented by this Class object, as a String.

什么时候返回 void

最佳答案

它会给你void void 的类文字字符串输入:

Class<Void> clazz = void.class;
System.out.println(clazz.getName());

引用JLS § 15.8.2进一步阅读:

A class literal is an expression consisting of the name of a class, interface, array, or primitive type, or the pseudo-type void, followed by a '.' and the token class.
[...]
The type of void.class (§8.4.5) is Class<Void>.

关于java - getClass().getName() 什么时候返回 void?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21028434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com