java命名空间java.lang.management枚举memorytype的类成员方法:
non_heap定义及介绍
本文导语:
non_heap
public static final memorytype non_heap
非堆内存类型。
java 虚拟机管理堆之外的内存(称为非堆内存)。非堆内存包括方法区 和 java 虚拟机的内部处理或优化所需的内存。它存储每个类结构,如运行时常数池、字段和方法数...
public static final memorytype non_heap
- 非堆内存类型。
java 虚拟机管理堆之外的内存(称为非堆内存)。非堆内存包括方法区 和 java 虚拟机的内部处理或优化所需的内存。它存储每个类结构,如运行时常数池、字段和方法数据,以及方法和构造方法的代码。
public static final memorytype[] values()
- returns an array containing the constants of this enum type, in
the order they are declared. this method may be used to iterate
over the constants as follows:
for(memorytype c : memorytype.values())
system.out.println(c);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared