Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyze committed Jun 11, 2018
1 parent 8df699c commit d5affae
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Created by .ignore support plugin (hsz.mobi)
### Example user template template
### Example user template

# IntelliJ project files
/.idea
*.iml
out
gen
19 changes: 19 additions & 0 deletions src/main/java/TestTreeMap.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import java.util.TreeMap;

/**
* 功能描述:
*
* @version 1.0.0
* @author: <a href="12510705@qq.com">Zeny</a>
* @Date: Created in 2018/6/11 23:46.
*/
public class TestTreeMap {

public static void main(String[] args){
TreeMap map = new TreeMap();
map.put(2,12);
map.put(1,1);
map.put(3,1);
System.out.print(map);
}
}

0 comments on commit d5affae

Please sign in to comment.