如何创建一个原始数组类?
这个问题源自:如何通过反射获取此 Method 对象?
我正在尝试执行以下操作:
Class c1 = Class.forName("[Ljava.lang.Integer;"); // works fine
Class c1 = Class.forName("[Lint;"); // doesn't work, since it's primitive
解决方法是什么? int[].class
是唯一的解决方案吗?
This question is derived from: How to get this Method object via reflection?
I'm trying to do the following:
Class c1 = Class.forName("[Ljava.lang.Integer;"); // works fine
Class c1 = Class.forName("[Lint;"); // doesn't work, since it's primitive
What is the workaround? int[].class
is the only solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅
Class 的 javadoc .getName()
了解详细信息。See javadoc of
Class.getName()
for details.根据此页面使用:
According to this page use: