What is the function of the “out” and “.idea” folder in Intellij?

后端 未结 3 1275
醉话见心
醉话见心 2021-01-17 11:51

Can someone clearly explain what is \"out\" and \".idea\" folders in the project structure indicate? Though I\'m not a beginner in Java, I need help understanding how all th

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-17 12:25

    Lets consider the basic project setup.

    1. Here src folder contains all the class files i.e java files.In this example its main.java
    2. out folder is the project output folder.This folder will be organised hierarchically, which is similar to the src folder.This folder contains the compiled class file.In this example it is main.class out_Reference
    3. idea directory that keeps project settings.idea_Reference

     

提交回复
热议问题