将字符串数组作为参数传递给函数java
我想将字符串数组作为参数传递给函数。请看下面的代码
String[] stringArray = {'a', 'b', 'c', 'd', 'e'};functionFoo(stringArray);
代替:
functionFoo('a', 'b', 'c', 'd', 'e');
但是如果我这样做,我会收到一条错误消息,指出将其转换String[]
为String
。我想知道是否可以传递这样的值,或者正确的方法是什么?
回答:
怎么样:
public class test { public static void someFunction(String[] strArray) {
// do something
}
public static void main(String[] args) {
String[] strArray = new String[]{"Foo","Bar","Baz"};
someFunction(strArray);
}
}
以上是 将字符串数组作为参数传递给函数java 的全部内容, 来源链接: utcz.com/qa/407071.html