相关文章推荐
闯红灯的煎鸡蛋  ·  HttpUtility.UrlEncode ...·  1 年前    · 
睿智的墨镜  ·  Element-Plus ...·  1 年前    · 
重感情的围巾  ·  How do I access a ...·  1 年前    · 
public class ArrayToCollection { public static void main ( String args [ ] ) throws IOException { int n = 5 ; // 5 个元素 String [ ] name = new String [ n ] ; for ( int i = 0 ; i < n ; i ++ ) { name [ i ] = String . valueOf ( i ) ; List < String > list = Arrays . asList ( name ) ; System . out . println ( ) ; for ( String li : list ) { String str = li ; System . out . print ( str + " " ) ;

以上代码运行输出结果为:

0 1 2 3 4

Java 实例 Java 实例

  • #0

  •