zoukankan      html  css  js  c++  java
  • jdk,jre,jvm,openJdk

    1,jdk

     

     

    install: 

    java_home: point to the installation directory of JDK, which is used by some java development tools such as Tomcat and Eclipse.

    path: path is system variable which is used by windows. It records some location of some runnable software. It' s convenient to use     some commands directly.

    classpath: classpath is similar to the path but the path is used by the operating system and classpath is used by java. It tells the java     execution system where we find the class we need.

    bin: the bin is including some development tools like javac(java compiler), JMS(java mission control), JavaDoc.

    lib: when we develop an application, we need some jar. The exe needs those jar as independence.

    include: include folder include c head file which supports some interfaces of JVM tools.

    2, JRE

    jre:jre is including two folders. One is the bin which means JVM. Another is lib. lib is the class library needed for JVM to work. The JVM   uses those libs to interpret your own classes.

    3, JVM

    JVM : The JVM manage the system memory and provide a portable execution environment for java-based applications.

    gc: continuously identifies and eliminates unused memory in Java programs. 

  • 相关阅读:
    2-6 求阶乘序列前N项和
    2-5 求平方根序列前N项和
    2-4 求交错序列前N项和
    2-3 求平方与倒数序列的部分和
    2-2 阶梯电价
    2-1 求整数均值
    2-17 生成3的乘方表
    【秋招之行】自白篇
    Django开发个人博客入门学习经验贴
    浅尝装饰器和AOP
  • 原文地址:https://www.cnblogs.com/vhyc/p/12043762.html
Copyright © 2011-2022 走看看