- Java 9 Programming By Example
- Peter Verhas
- 183字
- 2021-07-02 23:37:28
IDE screen structure
The different IDEs look similar, and have the same screen structure more or less. In the following screenshot, you can see an IntelliJ IDE:

On the left side, you can see the file structure of a Java project. A Java project typically contains many files in different directories which we will discuss in the next chapter. The simple HelloWorld application contains a pom.xml project description file. This file is needed for the Maven build tool, which is also a topic for the next chapter. For now, you should only know that it is a file that describes the project structure for maven. The IDE also keeps track of some administrative data for itself. It is stored in HelloWorld.iml. The main program file is stored in the src/main/java directory and named HelloWorld.java.
On the right side, you can see the files. In the screenshot, we have only one file opened. In case there is more than one file opened, then there are tabs-one for each file. Now, the active file is HelloWorld.java that can be edited in the source code editor.
- C語言程序設(shè)計(jì)實(shí)踐教程(第2版)
- Learning C# by Developing Games with Unity 2020
- Monkey Game Development:Beginner's Guide
- TypeScript Blueprints
- Practical Internet of Things Security
- arc42 by Example
- Python從入門到精通(精粹版)
- C語言程序設(shè)計(jì)
- Internet of Things with Intel Galileo
- SQL Server 2016數(shù)據(jù)庫應(yīng)用與開發(fā)習(xí)題解答與上機(jī)指導(dǎo)
- D3.js 4.x Data Visualization(Third Edition)
- Python深度學(xué)習(xí):模型、方法與實(shí)現(xiàn)
- D3.js By Example
- 深入理解BootLoader
- Tkinter GUI Programming by Example