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

后端 未结 3 1259
醉话见心
醉话见心 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:36

    Read official doc here :- .out :- .out folder intellij

    And .idea :- .idea folder

    In Short all the project specific files goes to .idea folder and it will be recreate if you delete the project.

    And .out folder contains the output of your project when you build/compile it ie contains .class files.

提交回复
热议问题