Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- Neither the name of Oracle nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Header for -agentlib:hprof (or -Xrunhprof) ASCII Output (JDK 5.0 JVMTI based)
WARNING! This file format is under development, and is subject to
change without notice.
This file contains the following types of records:
THREAD START
THREAD END mark the lifetime of Java threads
TRACE represents a Java stack trace. Each trace consists
of a series of stack frames. Other records refer to
TRACEs to identify (1) where object allocations have
taken place, (2) the frames in which GC roots were
found, and (3) frequently executed methods.
HEAP DUMP is a complete snapshot of all live objects in the Java
heap. Following distinctions are made:
ROOT root set as determined by GC
CLS classes
OBJ instances
ARR arrays
SITES is a sorted list of allocation sites. This identifies
the most heavily allocated object types, and the TRACE
at which those allocations occurred.
CPU SAMPLES is a statistical profile of program execution. The VM
periodically samples all running threads, and assigns
a quantum to active TRACEs in those threads. Entries
in this record are TRACEs ranked by the percentage of
total quanta they consumed; top-ranked TRACEs are
typically hot spots in the program.
CPU TIME is a profile of program execution obtained by measuring
the time spent in individual methods (excluding the time
spent in callees), as well as by counting the number of
times each method is called. Entries in this record are
TRACEs ranked by the percentage of total CPU time. The
"count" field indicates the number of times each TRACE
is invoked.
MONITOR TIME is a profile of monitor contention obtained by measuring
the time spent by a thread waiting to enter a monitor.
Entries in this record are TRACEs ranked by the percentage
of total monitor contention time and a brief description
of the monitor. The "count" field indicates the number of
times the monitor was contended at that TRACE.
MONITOR DUMP is a complete snapshot of all the monitors and threads in
the System.
HEAP DUMP, SITES, CPU SAMPLES|TIME and MONITOR DUMP|TIME records are generated
at program exit. They can also be obtained during program execution by typing
Ctrl-\ (on Solaris) or by typing Ctrl-Break (on Win32).
jdk1.8.031 jdk1.8
需积分: 0 34 浏览量
更新于2024-10-22
收藏 128.87MB ZIP 举报
根据提供的文件信息,可以生成以下知识点:
知识点:
1. JDK(Java Development Kit)是甲骨文公司提供的一个软件开发包,用于Java语言的开发。它包含了Java运行环境(Java Runtime Environment,JRE)、Java工具和Java基础的类库等。
2. JDK 1.8是Java开发工具包的一个版本,其版本号为1.8.0_31,通常简称为JDK 1.8。JDK 1.8在Java历史上是一个重要的里程碑,它引入了大量新特性,包括Lambda表达式、新的日期时间API、Streams API等。
3. JDK 1.8的压缩包包含了多个文件和文件夹,每个都有其特定的作用。例如,COPYRIGHT文件包含了版权声明,README.html和THIRDPARTYLICENSEREADME.txt文件分别包含了JDK的使用说明和第三方组件的许可信息,而LICENSE文件则是JDK的许可证文件。
4. release文件夹可能包含了与JDK版本发布相关的信息,这可以帮助开发者了解具体的版本详情。
5. jmc.txt可能是指JMC(Java Mission Control),它是一套用于监控和管理Java应用程序的工具集。
6. javafx-src.zip和src.zip文件夹分别包含了JavaFX和Java标准版的源代码。JavaFX是Java编程语言的一个平台,用于构建富客户端应用程序,而src.zip文件则包含了Java标准版的源代码,这对于理解Java语言和库的工作原理非常有帮助。
7. include文件夹可能包含了编译Java程序所需的头文件和相关的库文件。
8. 版本号中的"031"表明这是JDK 1.8的一个更新版本,对于了解JDK版本迭代和具体更新内容很有帮助。
9. 由于Java是一个跨平台的编程语言,JDK 1.8的发布对于Java社区和开发者来说意味着更好的性能,更多的功能以及更高效的开发体验。
10. 对于开发者而言,了解JDK各个版本的更新内容是必要的,它能够帮助开发者充分利用Java提供的最新功能,以及确保他们的应用与最新标准兼容。


阿挥的编程日记
- 粉丝: 150