本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
java中的Collection的toArray
Collection中的toArray方法很久以前就知道,不过今天发现有overload过。
1.Object[] toArray()
2.<T> T[] toArray(T[] a)
比较不同的是,2的形式中,返回的类型是由参数指定的。比如:
String[] y = x.toArray(new String[0]);
返回的就是String类型的数组。
交流群:1326077 ...
模拟ArrayList
最近学习集合类,感觉光看总记不住,就边学习,边练习。
于是自己模拟了下常用的 ArrayList 类。名字为MyArrayList。
亮点是使用内部类返回 Iterator。
1:首先模拟 Iterator 接口。
/**
* @author: 孟志昂
* @email: mengzhiang@gmail.com
*/
interface MyIterator {
...
Array和Collection相互转换以及copy深度的小测
blog迁移至:http://www.micmiu.com
周末闲来无事,把java中Array和Collection之间相互转换小结了下,顺便对转换过程中涉及到的javabena的copy深度进行了简单的测试,详细内容将按照如下分类分别介绍:
List <-> Array
Set <-> Array
List <-> Set
List < ...
Spring中集合类型的装配
通过<list/>、<set/>、<map/>及<props/>元素可以定义和设置与Java Collection类型对应List、Set、Map及Properties的值。下面通过一个简单例子说明 ...
Chapter 11. Holding Your Objects -- Thinking in Java
1) An array has a fixed size, and in the more general case, you won’t know at the time you’re writing the program how many objects you’re going to need.
2) The java.util library has a reasonably ...
未完 Java各种比较 : == | equals | compareTo | compare | instanceof
Equality Operator == :
http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.21
一 基本数字类型之间、基本数字类型和其包装类对象之间使用 “==”,比较的是它们的数字值。引用称为 Numerical Equality Operator。具体点说:
如果参与==的两个操作数都是基本数 ...
未完 Guava
集合工具:引用
List<String> companyNames = Lists.transform(companyList, new Function<Company, String>() {
public String apply(Company input) {
...