Difference between java class and jar

后端 未结 4 1512
南笙
南笙 2021-01-30 20:44

What is the difference between a java class file and a jar file?

4条回答
  •  半阙折子戏
    2021-01-30 21:04

    A java file contains Java code. A Java file is compiled to produce a class file that can be loaded by the JVM. The contents of a class file are rather well explained here. A Jar file is an archive of otherfile, most likely class files.

提交回复
热议问题