繁体   English   中英

将字符串数组作为参数传递给函数java

[英]Passing a string array as a parameter to a function 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 中另一个称为变量参数的概念。 它基本上是这样工作的。 例如:-

 String concat (String ... strings)
   {
      StringBuilder sb = new StringBuilder ();
      for (int i = 0; i < strings.length; i++)
           sb.append (strings [i]);
      return sb.toString ();
   }

在这里我们可以调用 concat(a,b,c,d) 之类的函数或您想要的任意数量的参数。

更多信息: http ://today.java.net/pub/a/today/2004/04/19/varargs.html

我相信这应该是这样做的方式......

    public static void function(String [] array){
    ...
    }

调用将像...

    public void test(){
        String[] stringArray = {"a","b","c","d","e","f","g","h","t","k","k","k","l","k"};
        function(stringArray);
    }

查看熟悉的 main 方法,该方法将字符串数组作为参数

您的方法声明很可能不正确。 确保方法参数的类型为字符串数组 (String[]) 而不是简单的字符串,并且在数组声明中使用双引号将字符串括起来。

private String[] stringArray = {"a","b","c","d","e","f","g","h","t","k","k","k"};
public void myMethod(String[] myArray) {}

我想你忘了将参数注册为String[]

随心所欲地使用它。

/*
 * The extendStrArray() method will takes a number "n" and
 * a String Array "strArray" and will return a new array
 * containing 'n' new positions. This new returned array
 * can then be assigned to a new array, or the existing
 * one to "extend" it, it contain the old value in the 
 * new array with the addition n empty positions.
 */
private String[] extendStrArray(int n, String[] strArray){
    String[] old_str_array = strArray;
    String[] new_str_array = new String[(old_str_array.length + n)];
    for(int i = 0; i < old_str_array.length; i++ ){
        new_str_array[i] = old_str_array[i];
    }//end for loop

    return new_str_array;

}//end extendStrArray()

基本上我会这样使用它:

String[] students = {"Tom", "Jeff", "Ashley", "Mary"};
// 4 new students enter the class so we need to extend the string array
students = extendStrArray(4, students); //this will effectively add 4 new empty positions to the "students" array.

请查看以下代码了解更多详情


package FirstTestNgPackage;

import java.util.ArrayList;
import java.util.Arrays;


public class testingclass {

    public static void main(String[] args) throws InterruptedException {
        // TODO Auto-generated method stub
        System.out.println("Hello");
        
        int size = 7;
        String myArray[] = new String[size];
        System.out.println("Enter elements of the array (Strings) :: ");
        for(int i=0; i<size; i++)
        {
        myArray[i] = "testing"+i;
        }
        System.out.println(Arrays.toString(myArray));
        
        
        ArrayList<String> myList = new ArrayList<String>(Arrays.asList(myArray));
        
        
        System.out.println("Enter the element that is to be added:");
        
        myArray = myList.toArray(myArray);
        
        someFunction(myArray);
        }
    
    public static void someFunction(String[] strArray) 
    { 
        System.out.println("in function");
        System.out.println("in function length"+strArray.length );
        System.out.println(Arrays.toString(strArray));
        
           }
        }

只需复制它并过去......你的代码......它会起作用......然后你就会明白如何将字符串数组作为参数传递......

谢谢

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM