将字符串数组转换为向量的最佳方法?
顾名思义,将字符串数组" title="字符串数组">字符串数组转换为向量的最佳方法是什么?
谢谢
回答:
调用Vector的构造函数,该构造函数使用现有集合(在本例中为数组)初始化自身:
String[] strings = { "Here", "Are", "Some", "Strings" };Vector<String> vector = new Vector<String>(Arrays.asList(strings));
以上是 将字符串数组转换为向量的最佳方法? 的全部内容, 来源链接: utcz.com/qa/423399.html