本文介绍了改造集合阵列最简单的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我们有一个收集和LT;富>
。什么是最好的(最短在目前情况下,LOC)的方式来将其转换为富[]
?所有的知名的库是不允许的。
Suppose we have a Collection<Foo>
. What is the best (shortest in LoC in current context) way to transform it to Foo[]
? Any well-known libraries are allowed.
UPD:(此部分多了一个案例,发表评论,如果你认为这是值得创建另一个线程吧):关于转变是什么收藏&LT;富&GT;
到酒吧[]
,其中酒吧
的构造与1型参数富
即公开栏(富富){...}
?
UPD: (one more case in this section; leave comments if you think it's worth to create another thread for it): What about transforming Collection<Foo>
to Bar[]
where Bar
has constructor with 1 parameter of type Foo
i.e. public Bar(Foo foo){ ... }
?
推荐答案
其中, X
是集:
Foo[] foos = x.toArray(new Foo[x.size()]);
这篇关于改造集合阵列最简单的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!