English 中文(简体)
java 虚拟机器:类型信息
原标题:java virtual machine: type information

I recently read about JVM specification according to Artima Inside the JVM 2-nd Ed. One of the chapters mentioned type storing in the Java runtime and it said that:

班次<代码>java.lang。 类别由Java虚拟机器为其装载的每一类型制造。 虚拟机器必须以某种方式将某种类型的类型与方法领域的类型数据联系起来。

我几乎感到困惑不解,因为我总是认为,<编码>Class文档中包含类型信息的方法学领域的位置。 是否还有其他一些地方是 Java仓库的类型?

最佳回答

是的,正如《<条码>一例java.lang所言。 建立了级。 也就是说,代表班级卷宗的Object以及方法领域的Class文档。

是<代码>Class的物体,在请上getClass(<>>/code>时即予退回。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...