ソースを参照

Initial commit

肖中正 7年前
コミット
81f33197f3
3個のファイルの変更93行の追加0行の削除
  1. 81
    0
      .gitignore
  2. 9
    0
      LICENSE
  3. 3
    0
      README.md

+ 81
- 0
.gitignore ファイルの表示

@@ -0,0 +1,81 @@
1
+# ---> Java
2
+# Compiled class file
3
+*.class
4
+
5
+# Log file
6
+*.log
7
+
8
+# BlueJ files
9
+*.ctxt
10
+
11
+# Mobile Tools for Java (J2ME)
12
+.mtj.tmp/
13
+
14
+# Package Files #
15
+*.jar
16
+*.war
17
+*.ear
18
+*.zip
19
+*.tar.gz
20
+*.rar
21
+
22
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23
+hs_err_pid*
24
+
25
+# ---> Android
26
+# Built application files
27
+*.apk
28
+*.ap_
29
+
30
+# Files for the ART/Dalvik VM
31
+*.dex
32
+
33
+# Java class files
34
+*.class
35
+
36
+# Generated files
37
+bin/
38
+gen/
39
+out/
40
+
41
+# Gradle files
42
+.gradle/
43
+build/
44
+
45
+# Local configuration file (sdk path, etc)
46
+local.properties
47
+
48
+# Proguard folder generated by Eclipse
49
+proguard/
50
+
51
+# Log Files
52
+*.log
53
+
54
+# Android Studio Navigation editor temp files
55
+.navigation/
56
+
57
+# Android Studio captures folder
58
+captures/
59
+
60
+# Intellij
61
+*.iml
62
+.idea/workspace.xml
63
+.idea/tasks.xml
64
+.idea/gradle.xml
65
+.idea/dictionaries
66
+.idea/libraries
67
+
68
+# Keystore files
69
+*.jks
70
+
71
+# External native build folder generated in Android Studio 2.2 and later
72
+.externalNativeBuild
73
+
74
+# Google Services (e.g. APIs or Firebase)
75
+google-services.json
76
+
77
+# Freeline
78
+freeline.py
79
+freeline/
80
+freeline_project_description.json
81
+

+ 9
- 0
LICENSE ファイルの表示

@@ -0,0 +1,9 @@
1
+MIT License
2
+
3
+Copyright (c) <year> <copyright holders>
4
+
5
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 3
- 0
README.md ファイルの表示

@@ -0,0 +1,3 @@
1
+# learn_java
2
+
3
+Java学习

読み込み中…
キャンセル
保存