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

后端 未结 3 1287
醉话见心
醉话见心 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条回答
  •  一个人的身影
    2021-01-17 12:37

    When you use a JetBrains product such as Intellij Idea all the project specific settings are stored in the directory .idea. Here is a link from JetBrains documenting .idea directory: Documentation.

    As for the out folder it contains all your compiled classes, when you run your program from the IDE, all your classes are compiled in the out directory.

提交回复
热议问题