From b03e4ea388964a05876c2ee097df5f691313bd16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BC=95?= Date: Fri, 14 Jul 2023 17:52:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=A6=E4=B9=A0=E6=96=87=E6=A1=A3=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Hello/.idea/.gitignore | 8 ++ Hello/.idea/code.iml | 11 ++ Hello/.idea/misc.xml | 6 + Hello/.idea/modules.xml | 9 ++ Hello/.idea/uiDesigner.xml | 124 ++++++++++++++++++ Hello/out/production/code/.idea/.gitignore | 8 ++ Hello/out/production/code/.idea/code.iml | 11 ++ Hello/out/production/code/.idea/misc.xml | 6 + Hello/out/production/code/.idea/modules.xml | 8 ++ .../out/production/code/.idea/uiDesigner.xml | 124 ++++++++++++++++++ Hello/out/production/code/Hello.class | Bin 0 -> 796 bytes Hello/out/production/src/Hello.class | Bin 0 -> 647 bytes Hello/out/production/src/Main.class | Bin 0 -> 516 bytes Hello/src/.gitignore | 29 ++++ Hello/src/src.iml | 11 ++ Hello/src/src/Hello.java | 10 ++ Hello/src/src/Main.java | 5 + JavaSE/.idea/.gitignore | 8 ++ JavaSE/.idea/misc.xml | 6 + JavaSE/.idea/modules.xml | 9 ++ JavaSE/.idea/vcs.xml | 6 + JavaSE/JavaSE.iml | 9 ++ .../out/production/simple/HellowWorld.class | Bin 0 -> 536 bytes JavaSE/out/production/simple/Main.class | Bin 0 -> 516 bytes JavaSE/out/production/基础语法/Main.class | Bin 0 -> 516 bytes JavaSE/simple/.gitignore | 29 ++++ JavaSE/simple/simple.iml | 11 ++ JavaSE/simple/src/HellowWorld.java | 5 + JavaSE/simple/src/Main.java | 5 + code/.idea/workspace.xml | 52 ++++++++ 30 files changed, 510 insertions(+) create mode 100644 Hello/.idea/.gitignore create mode 100644 Hello/.idea/code.iml create mode 100644 Hello/.idea/misc.xml create mode 100644 Hello/.idea/modules.xml create mode 100644 Hello/.idea/uiDesigner.xml create mode 100644 Hello/out/production/code/.idea/.gitignore create mode 100644 Hello/out/production/code/.idea/code.iml create mode 100644 Hello/out/production/code/.idea/misc.xml create mode 100644 Hello/out/production/code/.idea/modules.xml create mode 100644 Hello/out/production/code/.idea/uiDesigner.xml create mode 100644 Hello/out/production/code/Hello.class create mode 100644 Hello/out/production/src/Hello.class create mode 100644 Hello/out/production/src/Main.class create mode 100644 Hello/src/.gitignore create mode 100644 Hello/src/src.iml create mode 100644 Hello/src/src/Hello.java create mode 100644 Hello/src/src/Main.java create mode 100644 JavaSE/.idea/.gitignore create mode 100644 JavaSE/.idea/misc.xml create mode 100644 JavaSE/.idea/modules.xml create mode 100644 JavaSE/.idea/vcs.xml create mode 100644 JavaSE/JavaSE.iml create mode 100644 JavaSE/out/production/simple/HellowWorld.class create mode 100644 JavaSE/out/production/simple/Main.class create mode 100644 JavaSE/out/production/基础语法/Main.class create mode 100644 JavaSE/simple/.gitignore create mode 100644 JavaSE/simple/simple.iml create mode 100644 JavaSE/simple/src/HellowWorld.java create mode 100644 JavaSE/simple/src/Main.java create mode 100644 code/.idea/workspace.xml 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 0000000000000000000000000000000000000000..80775afb5f9dd9bdc71f9dc39397d91e23209c65 GIT binary patch literal 796 zcmZuvO>fgc5PfSqapF3}Nl5ufQ@#o$g(e6gI3$EaMMb3)kb-jI!p5o9#P{ZL@J@qBT4;S(d{36m-dAnaChjksKa!XT0Es~x#FXUlcnV6L$>h-R_t zZTYG-D`jsfm2indXnZn(ypn>JPMdGWeU)CDr{I}c{{-=YhK38=)wN2x$lX2xu+(LG zd0fF7BP#hj(HWjw&f9KDe7#>=dC{vo)_W8VVb+gOI6(Cf73cQ&BPtBhW>CLtR1JkH zF;qTxgxWhp9Q^*F*!7gX#b3gf=w)H@=PZ%61Pe9xvW5aSP{chrc);@^DruK@h`)s@ zu5w62^@MAtsMgE77e@l9G9>vgbBOUDf&92m!_2_Z_qpoyOpEQgza1zJs~ry`CT QLiH&AQAne=!I*~D9}xJ(^^Lbs6>8P@Yg05G^w%z1*>V0k;(nqpsT5#)zBD+BP!0 z;aM{LMnD!k3i6CA+|{`XuDPwB5SM((;1#1OgU@S5?@54FtZ`Q$YMmL={DEqtD_+4a zP2XUqR2kt#N-1)f8R)>mG?^)_hz-0=XuR4nZD&k#NZTST<(R(;q}ZIEG8}B;9rFV3 I88fK<2Ovd#)c^nh literal 0 HcmV?d00001 diff --git a/Hello/out/production/src/Main.class b/Hello/out/production/src/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..e92adf7d8f256d86b5d8e1080fd1e655c523f9d9 GIT binary patch literal 516 zcmZvZ%TB^T6o&tSLTRmnAb3~m3S8Kw3k(|*#MiOmN7wV@lEZSh~=}g%99E z8P60GHDQuDlk=bRe{=i%dj9~>#es_)@-{3F1r!-76aK&h#p7{sHJFHD%1}I!u}r%R z`BuB{pajQ;>tPArzxLkKG!+qb=^2^oVFr>qxK3o8_R>V~s8hlUgLf{J(#=PmsFClY zf>j$;4>hbY)E2lH?0dsdF=1PCZgxO|%6Qyq_iZ#7tP3uw!#dR?!B7rmEG}o!KqNPO zph&5PddO9uC(`6UqLtpsDP1u%<_@`|4AN-bF4~9cJQ-7eZ9$pA?de%E6lc5E2Fh=_y+czl{YAwGH7m6^yUrN!Zu|NcCbr|F&}3z(q3R! cmtRr-1(+`d^7K>IABclJ?32#Wq?m*M4VH#yH~;_u literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..80f22c5c3663d8c63d05b357f9805adafe494a01 GIT binary patch literal 536 zcmZuuO;5r=5Pb`U(pm&T@LRwWdaxH04;U{d#zUhf7(94dU;|6Gttmy~&(eb?9{d6R zDC2A~0TOzc>AabF?@jyj`}Gar3`aJy*tAeVHHR%5+t@L&YhsTfdm#fEUoxbd#~lXa zD(nk}f+quUJMp_Bdf;6}NXZL(Ty=OPb^Q+-@lcK#^4^V5Dx5xsk?OaI#OE?#s5YOx z5r5&X;=#ae$B_&Mtwe-J16nJuXfxRDa1!;zwbZJ`1>#f9<-kPF#J+-ksS1Px# literal 0 HcmV?d00001 diff --git a/JavaSE/out/production/simple/Main.class b/JavaSE/out/production/simple/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..baa3095135d94c33157ebcb8e4f7ff41bf99d277 GIT binary patch literal 516 zcmZuuO;5r=5Pb`U(pm*U@LRzXdaxH04;U{d#zXx`FkCz>uz@Apt|>+1&(eb?9{d6R zDC2A~K@xhH*?IH!y_xOz&*v9_6CAk6W6ePowF1^%Y+%#ImW^$O{F#hoa?X%#9(EY4 z3*8qC#Xv^lW)gNqe9yazkaD1VTy=OXP5lR2$xx0-Be>==YSHbGGDEHT5RCW}_Z5!@ zemjX}G-##jJRT6gvY^f2w)G_LiA!nh9HV$_L_F9i*x2!~i#-PKN+_l4&pKB9hK+p> zbu`G?@EJ-o+uQC)^pZKK{W4BONUQ1zHLBAYrS|V=z=XyWJftNmsm46aU_Tm?B9Cfw z(Q;@YM~`g242X^bMTaV%GNYV3`T%=P+b+d?3NkFw*_#q5FH_}U1w}&4<_ko0hd}pmVB&#A`VJeC7ga3#SALH)D~w9 literal 0 HcmV?d00001 diff --git a/JavaSE/out/production/基础语法/Main.class b/JavaSE/out/production/基础语法/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..e92adf7d8f256d86b5d8e1080fd1e655c523f9d9 GIT binary patch literal 516 zcmZvZ%TB^T6o&tSLTRmnAb3~m3S8Kw3k(|*#MiOmN7wV@lEZSh~=}g%99E z8P60GHDQuDlk=bRe{=i%dj9~>#es_)@-{3F1r!-76aK&h#p7{sHJFHD%1}I!u}r%R z`BuB{pajQ;>tPArzxLkKG!+qb=^2^oVFr>qxK3o8_R>V~s8hlUgLf{J(#=PmsFClY zf>j$;4>hbY)E2lH?0dsdF=1PCZgxO|%6Qyq_iZ#7tP3uw!#dR?!B7rmEG}o!KqNPO zph&5PddO9uC(`6UqLtpsDP1u%<_@`|4AN-bF4~9cJQ-7eZ9$pA?de%E6lc5E2Fh=_y+czl{YAwGH7m6^yUrN!Zu|NcCbr|F&}3z(q3R! cmtRr-1(+`d^7K>IABclJ?32#Wq?m*M4VH#yH~;_u literal 0 HcmV?d00001 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