摘要: 元注解 1 package learn.JavaBasics.Class; 2 3 import java.lang.annotation.Documented; 4 import java.lang.annotation.ElementType; 5 import java.lang.annota 阅读全文
posted @ 2015-10-04 23:43 _logan 阅读(130) 评论(0) 推荐(0) 编辑
摘要: File类 1 package com.hxw.io; 2 3 class Student implements Serializable{ 4 private String name; 5 private int age; 6 7 public Student(String name, int a 阅读全文
posted @ 2015-10-04 07:16 _logan 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Java集合可分为Collection和Map两大体系 在这张图中的SortedSet也是一个接口,继承了Set接口,然后TreeSet实现了SortedSet接口 注:为LinkedHashSet List Map 遍历 阅读全文
posted @ 2015-10-04 04:23 _logan 阅读(186) 评论(0) 推荐(0) 编辑