Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Java class file

From Wikipedia, the free encyclopedia
(Redirected fromClass (file format))
Executable Java file format
This article is about the data format. For classes in Java, seeClass (computer programming).
Java class file
Internet media typeapplication/java-vm, application/x-httpd-java, application/x-java, application/java, application/java-byte-code, application/x-java-class, application/x-java-vm
Developed bySun Microsystems

AJava class file is afile (with the.classfilename extension) containingJava bytecode that can be executed on theJava Virtual Machine (JVM). A Java class file is usually produced by aJava compiler fromJava programming languagesource files (.java files) containing Javaclasses (alternatively, otherJVM languages can also be used to create class files). If a source file has more than one class, each class is compiled into a separate class file. Thus, it is called a.class file because it contains the bytecode for a single class.

JVMs are available for manyplatforms, and a class file compiled on one platform will execute on a JVM of another platform. This makes Java applicationsplatform-independent.

History

[edit]

On 11 December 2006, the class file format was modified underJava Specification Request (JSR) 202.[1]

File layout and structure

[edit]

Sections

[edit]

There are 10 basic sections to the Java class file structure:

  • Magic Number: 0xCAFEBABE
  • Version of Class File Format: the minor and major versions of the class file
  • Constant Pool: Pool of constants for the class
  • Access Flags: for example whether the class is abstract, static, etc.
  • This Class: The name of the current class
  • Super Class: The name of the super class
  • Interfaces: Any interfaces in the class
  • Fields: Any fields in the class
  • Methods: Any methods in the class
  • Attributes: Any attributes of the class (for example the name of the sourcefile, etc.)

Magic Number

[edit]

Class files are identified by the following 4byteheader (inhexadecimal):CA FE BA BE (the first 4 entries in the table below). The history of thismagic number was explained byJames Gosling referring to a restaurant inPalo Alto:[2]

"We used to go to lunch at a place called St Michael's Alley. According to local legend, in the deep dark past, theGrateful Dead used to perform there before they made it big. It was a pretty funky place that was definitely a Grateful Dead Kinda Place. WhenJerry died, they even put up a little Buddhist-esque shrine. When we used to go there, we referred to the place as Cafe Dead. Somewhere along the line it was noticed that this was a HEX number. I was re-vamping some file format code and needed a couple ofmagic numbers: one for the persistent object file, and one for classes. I used CAFEDEAD for the object file format, and ingrepping for 4 character hex words that fit after "CAFE" (it seemed to be a good theme) I hit on BABE and decided to use it.At that time, it didn't seem terribly important or destined to go anywhere but the trash-can of history. So CAFEBABE became the class file format, and CAFEDEAD was the persistent object format. But the persistent object facility went away, and along with it went the use of CAFEDEAD - it was eventually replaced byRMI."

General layout

[edit]

Because the class file contains variable-sized items and does not also contain embedded file offsets (or pointers), it is typically parsed sequentially, from the first byte toward the end. At the lowest level the file format is described in terms of a few fundamental data types:

  • u1: an unsigned8-bit integer
  • u2: an unsigned16-bit integer inbig-endian byte order
  • u4: an unsigned32-bit integer in big-endian byte order
  • table: an array of variable-length items of some type. The number of items in the table is identified by a preceding count number (the count is a u2), but the size in bytes of the table can only be determined by examining each of its items.

Some of these fundamental types are then re-interpreted as higher-level values (such as strings or floating-point numbers), depending on context.There is no enforcement of word alignment, and so no padding bytes are ever used.The overall layout of the class file is as shown in the following table.

Byte offsetSizeType or valueDescription
04 bytesu1 =
0xCA hex
magic number (CAFEBABE) used to identify file as conforming to the class file format
1u1 =
0xFE hex
2u1 =
0xBA hex
3u1 =
0xBE hex
42 bytesu2minor version number of the class file format being used
5
62 bytesu2major version number of the class file format being used.[3]

Java SE 25 = 69 (0x45 hex),
Java SE 24 = 68 (0x44 hex),
Java SE 23 = 67 (0x43 hex),
Java SE 22 = 66 (0x42 hex),
Java SE 21 = 65 (0x41 hex),
Java SE 20 = 64 (0x40 hex),
Java SE 19 = 63 (0x3F hex),
Java SE 18 = 62 (0x3E hex),
Java SE 17 = 61 (0x3D hex),
Java SE 16 = 60 (0x3C hex),
Java SE 15 = 59 (0x3B hex),
Java SE 14 = 58 (0x3A hex),
Java SE 13 = 57 (0x39 hex),
Java SE 12 = 56 (0x38 hex),
Java SE 11 = 55 (0x37 hex),
Java SE 10 = 54 (0x36 hex),[4]
Java SE 9 = 53 (0x35 hex),[5]
Java SE 8 = 52 (0x34 hex),
Java SE 7 = 51 (0x33 hex),
Java SE 6.0 = 50 (0x32 hex),
Java SE 5.0 = 49 (0x31 hex),
JDK 1.4 = 48 (0x30 hex),
JDK 1.3 = 47 (0x2F hex),
JDK 1.2 = 46 (0x2E hex),
JDK 1.1 = 45 (0x2D hex).
For details of earlier version numbers see footnote 1 atThe JavaTM Virtual Machine Specification 2nd edition

7
82 bytesu2constant pool count, number of entries in the following constant pool table. This count is at least one greater than the actual number of entries; see following discussion.
9
10cpsize (variable)tableconstant pool table, an array of variable-sized constant pool entries, containing items such as literal numbers, strings, and references to classes or methods. Indexed starting at 1, containing (constant pool count - 1) number of entries in total (see note).
...
...
...
10+cpsize2 bytesu2access flags, a bitmask
11+cpsize
12+cpsize2 bytesu2identifiesthis class, index into the constant pool to a "Class"-type entry
13+cpsize
14+cpsize2 bytesu2identifiessuper class, index into the constant pool to a "Class"-type entry
15+cpsize
16+cpsize2 bytesu2interface count, number of entries in the following interface table
17+cpsize
18+cpsizeisize (variable)tableinterface table: a variable-length array of constant pool indexes describing the interfaces implemented by this class
...
...
...
18+cpsize+isize2 bytesu2field count, number of entries in the following field table
19+cpsize+isize
20+cpsize+isizefsize (variable)tablefield table, variable length array of fields

each element is a field_info structure defined inhttps://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.5

...
...
...
20+cpsize+isize+fsize2 bytesu2method count, number of entries in the following method table
21+cpsize+isize+fsize
22+cpsize+isize+fsizemsize (variable)tablemethod table, variable length array of methods

each element is a method_info structure defined inhttps://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.6

...
...
...
22+cpsize+isize+fsize+msize2 bytesu2attribute count, number of entries in the following attribute table
23+cpsize+isize+fsize+msize
24+cpsize+isize+fsize+msizeasize (variable)tableattribute table, variable length array of attributes

each element is an attribute_info structure defined inhttps://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.7

...
...
...

Representation in a C-like programming language

[edit]

SinceC does not support multiple variable length arrays within a struct, the code below won't compile and only serves as a demonstration.

structClass_File_Format{u4magic_number;u2minor_version;u2major_version;u2constant_pool_count;cp_infoconstant_pool[constant_pool_count-1];u2access_flags;u2this_class;u2super_class;u2interfaces_count;u2interfaces[interfaces_count];u2fields_count;field_infofields[fields_count];u2methods_count;method_infomethods[methods_count];u2attributes_count;attribute_infoattributes[attributes_count];}

The constant pool

[edit]

The constant pool table is where most of the literal constant values are stored. This includes values such as numbers of all sorts, strings, identifier names, references to classes and methods, and type descriptors. All indexes, or references, to specific constants in the constant pool table are given by 16-bit (type u2) numbers, where index value 1 refers to the first constant in the table (index value 0 is invalid).

Due to historic choices made during the file format development, the number of constants in the constant pool table is not actually the same as the constant pool count which precedes the table. First, the table is indexed starting at 1 (rather than 0), but the count should actually be interpreted as the maximum index plus one.[6] Additionally, two types of constants (longs and doubles) take up two consecutive slots in the table, although the second such slot is a phantom index that is never directly used.

The type of each item (constant) in the constant pool is identified by an initial bytetag. The number of bytes following this tag and their interpretation are then dependent upon the tag value. The valid constant types and their tag values are:

Tag byteAdditional bytesDescription of constantVersion introduced
12+x bytes
(variable)
UTF-8 (Unicode) string: a character string prefixed by a 16-bit number (type u2) indicating the number of bytes in the encoded string which immediately follows (which may be different than the number of characters). Note that the encoding used is not actuallyUTF-8, but involves a slight modification of the Unicode standard encoding form.1.0.2
34 bytesInteger: a signed 32-bittwo's complement number in big-endian format1.0.2
44 bytesFloat: a 32-bit single-precisionIEEE 754 floating-point number1.0.2
58 bytesLong: a signed 64-bit two's complement number in big-endian format (takes two slots in the constant pool table)1.0.2
68 bytesDouble: a 64-bit double-precision IEEE 754 floating-point number (takes two slots in the constant pool table)1.0.2
72 bytesClass reference: an index within the constant pool to a UTF-8 string containing the fully qualified class name (ininternal format) (big-endian)1.0.2
82 bytesString reference: an index within the constant pool to a UTF-8 string (big-endian too)1.0.2
94 bytesField reference: two indexes within the constant pool, the first pointing to a Class reference, the second to a Name and Type descriptor. (big-endian)1.0.2
104 bytesMethod reference: two indexes within the constant pool, the first pointing to a Class reference, the second to a Name and Type descriptor. (big-endian)1.0.2
114 bytesInterface method reference: two indexes within the constant pool, the first pointing to a Class reference, the second to a Name and Type descriptor. (big-endian)1.0.2
124 bytesName and type descriptor: two indexes to UTF-8 strings within the constant pool, the first representing a name (identifier) and the second a specially encoded type descriptor.1.0.2
153 bytesMethod handle: this structure is used to represent a method handle and consists of one byte of type descriptor, followed by an index within the constant pool.[6]7
162 bytesMethod type: this structure is used to represent a method type, and consists of an index within the constant pool.[6]7
174 bytesDynamic: this is used to specify a dynamically computed constant produced by invocation of a bootstrap method.[6]11
184 bytesInvokeDynamic: this is used by aninvokedynamic instruction to specify a bootstrap method, the dynamic invocation name, the argument and return types of the call, and optionally, a sequence of additional constants called static arguments to the bootstrap method.[6]7
192 bytesModule: this is used to identify a module.[6]9
202 bytesPackage: this is used to identify a package exported or opened by a module.[6]9

There are only two integral constant types, integer and long. Other integral types appearing in the high-level language, such as boolean, byte, and short must be represented as an integer constant.

Class names in Java, when fully qualified, are traditionally dot-separated, such as "java.lang.Object". However within the low-level Class reference constants, an internal form appears which uses slashes instead, such as "java/lang/Object".

The Unicode strings, despite the moniker "UTF-8 string", are not actually encoded according to the Unicode standard, although it is similar. There are two differences (seeUTF-8 for a complete discussion). The first is that the code point U+0000 is encoded as the two-byte sequenceC0 80 (in hex) instead of the standard single-byte encoding00. The second difference is that supplementary characters (those outside theBMP at U+10000 and above) are encoded using a surrogate-pair construction similar toUTF-16 rather than being directly encoded using UTF-8. In this case each of the two surrogates is encoded separately in UTF-8. For example, U+1D11E is encoded as the 6-byte sequenceED A0 B4 ED B4 9E, rather than the correct 4-byte UTF-8 encoding ofF0 9D 84 9E.

See also

[edit]

References

[edit]
  1. ^JSR 202 Java Class File Specification Update
  2. ^James Gosling private communication to Bill Bumgarner
  3. ^"Table 4.1-A. class file format major versions".
  4. ^"JDK 10 Release Notes".
  5. ^"[JDK-8148785] Update class file version to 53 for JDK-9 - Java Bug System".
  6. ^abcdefg"Chapter 4. The class File Format".

Further reading

[edit]
Platforms
Oracle technologies
Platform technologies
Major third-party
technologies
History
JVM languages
Community
Conferences
Organizations
People
Retrieved from "https://en.wikipedia.org/w/index.php?title=Java_class_file&oldid=1285584034"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp