美文网首页Java虚拟机官方文档
java 虚拟机运行时数据区域

java 虚拟机运行时数据区域

作者: 丫头可乐 | 来源:发表于2022-02-15 15:30 被阅读0次

    The Java Virtual Machine defines various run-time data areas that are used during execution of a program. Some of these data areas are created on Java Virtual Machine start-up and are destroyed only when the Java Virtual Machine exits. Other data areas are per thread. Per-thread data areas are created when a thread is created and destroyed when the thread exits.

    Java虚拟机定义了程序执行期间使用的各种运行时数据区域。其中一些数据区域是在Java虚拟机启动时创建的,只有在Java虚拟机退出时才会被销毁。其他数据区域为每个线程。每线程数据区在创建线程时创建,在线程退出时销毁。

    相关文章

      网友评论

        本文标题:java 虚拟机运行时数据区域

        本文链接:https://www.haomeiwen.com/subject/wphllrtx.html