init
This commit is contained in:
39
.gitignore
vendored
Normal file
39
.gitignore
vendored
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
# 忽略任意目录层级下的 .iml 文件(核心规则)
|
||||||
|
**/*.iml
|
||||||
|
|
||||||
|
# 保留 IDEA 其他核心忽略项(完整配置如下)
|
||||||
|
# --------------------------- IntelliJ IDEA 相关 ---------------------------
|
||||||
|
.idea/
|
||||||
|
*.iws
|
||||||
|
*.ipr
|
||||||
|
out/
|
||||||
|
*.idea_modules/
|
||||||
|
.idea/misc.xml
|
||||||
|
.idea/workspace.xml
|
||||||
|
.idea/tasks.xml
|
||||||
|
.idea/gradle.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
.idea/libraries
|
||||||
|
.idea/runConfigurations/
|
||||||
|
.idea/shelf/
|
||||||
|
.idea/vcs.xml
|
||||||
|
|
||||||
|
# --------------------------- Java 项目通用 ---------------------------
|
||||||
|
*.class
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.ear
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
target/
|
||||||
|
build/
|
||||||
|
.gradle/
|
||||||
|
gradle-app.setting
|
||||||
|
!gradle-wrapper.jar
|
||||||
|
*.properties
|
||||||
|
!*.example.properties
|
||||||
|
logs/
|
||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
7
day01/src/com/inmind/HelloWorld.java
Normal file
7
day01/src/com/inmind/HelloWorld.java
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package com.inmind;
|
||||||
|
|
||||||
|
public class HelloWorld {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("你好,同学们");
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user