Collection 接口的 toArray 方法
Posted hglibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Collection 接口的 toArray 方法相关的知识,希望对你有一定的参考价值。
Collection 接口的 toArray 方法
方法签名
Object[] toArray() 返回包含此 collection 中所有元素的数组。
更多请参考:https://www.geeksforgeeks.org/linkedhashset-toarrayt-method-in-java-with-example/
以上是关于Collection 接口的 toArray 方法的主要内容,如果未能解决你的问题,请参考以下文章
Collection的toArray()使用上需要注意的地方
java中Collection方法里面的Object[] toArray() 和 <T> T[] toArray(T[] a)有啥区别吗?