博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将数组转换成list
阅读量:5232 次
发布时间:2019-06-14

本文共 356 字,大约阅读时间需要 1 分钟。

public class ArrayAndListChange {	public static void test() {		String[] str = { "properties", "accident", "biz", "froce" };		List
list = new ArrayList
(); list = Arrays.asList(str); System.out.println(list); } public static void main(String[] args) { test(); }}

  

转载于:https://www.cnblogs.com/qqyong123/p/8479655.html

你可能感兴趣的文章