关于反射包的问题

发布于 2024-10-22 04:24:58 字数 103 浏览 1 评论 0原文

我从sun网站上读到,对于每个引用jvm都创建一个不可变的类对象 以便它可以内省每个类的运行时信息。 sun 提到使用 .class 语法。我想知道这个语法的内部机制以及它是如何工作的。

I read from sun website that for every reference jvm is creating one immutable class object
so that it can introspect the run time information of every class. And sun has mentioned to use .class syntax. I want to know the internal mechanism of this syntax and how it works.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

無處可尋 2024-10-29 04:24:58

您可能需要从反射教程开始

.class 语法解释在此页面(不,它没有不解释内部工作原理)

You may want to start with the reflection tutorial

The .class syntax is explained on this page (no, it doesn't explain the inner workings)

垂暮老矣 2024-10-29 04:24:58

如果使用 -target 1.4 或更早版本编译,则调用一次 Class.forName(String) ,然后将 Class 引用存储在合成静态字段中调用类。对于 -target 1.5 及更高版本,新版本的 ldc(“加载常量”)字节码操作引用该类。

使用javap -c 查看javac 生成的字节码。

If compiled with -target 1.4 or earlier, Class.forName(String) is called once and then Class reference stored in a synthetic static field in the calling class. For -target 1.5 and later, a new version of the ldc ("load constant") bytecode operation references the class.

Use javap -c to see the bytecode that javac produces.

忘你却要生生世世 2024-10-29 04:24:58

对于每个非泛型(或原始)类型(类、接口、数组类型、原始类型),都有一个 Class 对象,在加载此类时创建。该对象并非完全不可变,因为它包含类的静态变量。

如果你有一个对象,你可以通过调用o.getClass()来获取其实现类的类对象。如果你有某种类型,你可以通过Java中的T.class来获取它的类对象。

从类对象中,您可以检查您的类,获取构造函数、方法、字段、超类、实现的接口等 - 这称为反射。

(有关更多详细信息,请参阅其他答案中的链接。)

For each non-generic (or raw) type (Class, interface, array-type, primitive type) there is a Class object, created when this class is loaded. This object is not totally immutable, as it contains the static variables of the class, for example.

If you have an object, you can get the class object of its implementing class by calling o.getClass(). If you have some type, you can get its class object by T.class in Java.

From the class object you can inspect your class, to get constructors, methods, fields, superclass, implemented interfaces, and so on - this is called reflection.

(See the links in the other answers for more details.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文