Difference between java class and jar

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

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

4条回答
  •  独厮守ぢ
    2021-01-30 20:50

    JAR file is the compressed file format. You can store many files in a JAR file. JAR stands for the Java Archive. This file format is used to distribute a set of java classes. This file helps you to reduce the file size and collect many file in one by compressing files

    a Class is explained here

提交回复
热议问题