Skip to content

Commit d5994a4

Browse files
author
jianqiaozhang
committed
Initial commit
0 parents  commit d5994a4

File tree

15 files changed

+565
-0
lines changed

15 files changed

+565
-0
lines changed

.idea/dataSources.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dataSources/76c07c60-3276-4b8d-986d-35cf8ce88cb8.xml

Lines changed: 141 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dataSources/76c07c60-3276-4b8d-986d-35cf8ce88cb8/storage_v2/_src_/schema/ZJQ.IVsBAA.meta

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaStudy.iml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>

keymapstudy/keymapstudy.iml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package study;
2+
3+
import java.util.HashMap;
4+
5+
/**
6+
* @author shkstart
7+
* @date 2018/7/13 0013 - 下午 6:28
8+
*/
9+
public class DebugTest {
10+
11+
public static void main(String[] args){
12+
13+
for (int i = 0; i < 100; i++) {
14+
System.out.println(i); }
15+
16+
17+
HashMap<String, String> map = new HashMap<>();
18+
map.put("name","Tom");
19+
map.put("age","12");
20+
map.put("school","Tsinghua");
21+
map.put("major","computer");
22+
23+
String age = map.get("age");
24+
System.out.println("age = " + age);
25+
26+
map.remove("major");
27+
System.out.println(map);
28+
29+
}
30+
}

keymapstudy/src/study/Hello.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package study;
2+
3+
/**
4+
* @author shkstart
5+
* @date 2018/7/12 0012 - 下午 3:21
6+
*/
7+
public class Hello {
8+
public static void main(String[] args)
9+
{
10+
String age = "10";
11+
System.out.println(age);
12+
// System.out.println("age = " + age);
13+
}
14+
}

0 commit comments

Comments
 (0)