commit b03e4ea388964a05876c2ee097df5f691313bd16 Author: 刘引 Date: Fri Jul 14 17:52:04 2023 +0800 学习文档提交 diff --git a/Hello/.idea/.gitignore b/Hello/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/Hello/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Hello/.idea/code.iml b/Hello/.idea/code.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Hello/.idea/code.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hello/.idea/misc.xml b/Hello/.idea/misc.xml new file mode 100644 index 0000000..a346fd7 --- /dev/null +++ b/Hello/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Hello/.idea/modules.xml b/Hello/.idea/modules.xml new file mode 100644 index 0000000..b241827 --- /dev/null +++ b/Hello/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Hello/.idea/uiDesigner.xml b/Hello/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/Hello/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hello/out/production/code/.idea/.gitignore b/Hello/out/production/code/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/Hello/out/production/code/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Hello/out/production/code/.idea/code.iml b/Hello/out/production/code/.idea/code.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/Hello/out/production/code/.idea/code.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hello/out/production/code/.idea/misc.xml b/Hello/out/production/code/.idea/misc.xml new file mode 100644 index 0000000..a346fd7 --- /dev/null +++ b/Hello/out/production/code/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Hello/out/production/code/.idea/modules.xml b/Hello/out/production/code/.idea/modules.xml new file mode 100644 index 0000000..23968dc --- /dev/null +++ b/Hello/out/production/code/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Hello/out/production/code/.idea/uiDesigner.xml b/Hello/out/production/code/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/Hello/out/production/code/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hello/out/production/code/Hello.class b/Hello/out/production/code/Hello.class new file mode 100644 index 0000000..80775af Binary files /dev/null and b/Hello/out/production/code/Hello.class differ diff --git a/Hello/out/production/src/Hello.class b/Hello/out/production/src/Hello.class new file mode 100644 index 0000000..9b8ed52 Binary files /dev/null and b/Hello/out/production/src/Hello.class differ diff --git a/Hello/out/production/src/Main.class b/Hello/out/production/src/Main.class new file mode 100644 index 0000000..e92adf7 Binary files /dev/null and b/Hello/out/production/src/Main.class differ diff --git a/Hello/src/.gitignore b/Hello/src/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/Hello/src/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/Hello/src/src.iml b/Hello/src/src.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Hello/src/src.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hello/src/src/Hello.java b/Hello/src/src/Hello.java new file mode 100644 index 0000000..4211e90 --- /dev/null +++ b/Hello/src/src/Hello.java @@ -0,0 +1,10 @@ +public class Hello { + public static void main(String[] args) { + System.out.println("主方法"); + test("传值"); + + } + public static void test(String S) { + System.out.println(S); + } +} diff --git a/Hello/src/src/Main.java b/Hello/src/src/Main.java new file mode 100644 index 0000000..3e59c38 --- /dev/null +++ b/Hello/src/src/Main.java @@ -0,0 +1,5 @@ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/JavaSE/.idea/.gitignore b/JavaSE/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/JavaSE/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/JavaSE/.idea/misc.xml b/JavaSE/.idea/misc.xml new file mode 100644 index 0000000..1c2e834 --- /dev/null +++ b/JavaSE/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/JavaSE/.idea/modules.xml b/JavaSE/.idea/modules.xml new file mode 100644 index 0000000..7910126 --- /dev/null +++ b/JavaSE/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/JavaSE/.idea/vcs.xml b/JavaSE/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/JavaSE/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/JavaSE/JavaSE.iml b/JavaSE/JavaSE.iml new file mode 100644 index 0000000..caf65f9 --- /dev/null +++ b/JavaSE/JavaSE.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/JavaSE/out/production/simple/HellowWorld.class b/JavaSE/out/production/simple/HellowWorld.class new file mode 100644 index 0000000..80f22c5 Binary files /dev/null and b/JavaSE/out/production/simple/HellowWorld.class differ diff --git a/JavaSE/out/production/simple/Main.class b/JavaSE/out/production/simple/Main.class new file mode 100644 index 0000000..baa3095 Binary files /dev/null and b/JavaSE/out/production/simple/Main.class differ diff --git a/JavaSE/out/production/基础语法/Main.class b/JavaSE/out/production/基础语法/Main.class new file mode 100644 index 0000000..e92adf7 Binary files /dev/null and b/JavaSE/out/production/基础语法/Main.class differ diff --git a/JavaSE/simple/.gitignore b/JavaSE/simple/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/JavaSE/simple/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/JavaSE/simple/simple.iml b/JavaSE/simple/simple.iml new file mode 100644 index 0000000..f44cdf0 --- /dev/null +++ b/JavaSE/simple/simple.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/JavaSE/simple/src/HellowWorld.java b/JavaSE/simple/src/HellowWorld.java new file mode 100644 index 0000000..c2027af --- /dev/null +++ b/JavaSE/simple/src/HellowWorld.java @@ -0,0 +1,5 @@ +public class HellowWorld { + public static void main(String[] args) { + System.out.println("hello world"); + } +} diff --git a/JavaSE/simple/src/Main.java b/JavaSE/simple/src/Main.java new file mode 100644 index 0000000..3e59c38 --- /dev/null +++ b/JavaSE/simple/src/Main.java @@ -0,0 +1,5 @@ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/code/.idea/workspace.xml b/code/.idea/workspace.xml new file mode 100644 index 0000000..1ccc795 --- /dev/null +++ b/code/.idea/workspace.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + 1689325180350 + + + + + + \ No newline at end of file