如何将整个数组传递给方法?
private void PassArray() {
String[] arrayw = new String[4];
//populate array
PrintA(arrayw[]);
}
private void PrintA(String[] a) {
//do whatever with array here
}
我该如何正确地做到这一点?
答案 0 :(得分:52)
你这样做:
private void PassArray(){
String[] arrayw = new String[4]; //populate array
PrintA(arrayw);
}
private void PrintA(String[] a){
//do whatever with array here
}
将其作为其他变量传递。在Java中,数组通过引用传递。
答案 1 :(得分:13)
只需从原始代码中删除括号即可。
PrintA(arryw);
private void PassArray(){
String[] arrayw = new String[4];
//populate array
PrintA(arrayw);
}
private void PrintA(String[] a){
//do whatever with array here
}
就是这样。
答案 2 :(得分:8)
数组变量只是一个指针,所以你只需要传递它:
PrintA(arrayw);
修改强>
更详细一点。如果你想要做的是创建数组的COPY,你必须将数组传递给方法,然后在那里手动创建一个副本(不确定Java是否有Array.CopyOf()
之类的东西)。否则,您将传递数组的REFERENCE,因此如果您更改其中元素的任何值,它也将针对其他方法进行更改。
答案 3 :(得分:3)
在方法调用语句
中import java.util.*;
class atg {
void a() {
int b[]={1,2,3,4,5,6,7};
c(b);
}
void c(int b[]) {
int e=b.length;
for(int f=0;f<e;f++) {
System.out.print(b[f]+" ");//Single Space
}
}
public static void main(String args[]) {
atg ob=new atg();
ob.a();
}
}
1 2 3 4 5 6 7
答案 4 :(得分:2)
在java类中通常没有教授或遗漏数组的重要一点。当数组传递给函数时,会为同一个数组创建另一个指针(永远不会传递相同的指针)。您可以使用两个指针来操作数组,但是一旦将第二个指针分配给被调用方法中的新数组并通过void返回调用函数,则原始指针仍保持不变。
您可以在此处直接运行代码:https://www.compilejava.net/
import java.util.Arrays;
public class HelloWorld
{
public static void main(String[] args)
{
int Main_Array[] = {20,19,18,4,16,15,14,4,12,11,9};
Demo1.Demo1(Main_Array);
// THE POINTER Main_Array IS NOT PASSED TO Demo1
// A DIFFERENT POINTER TO THE SAME LOCATION OF Main_Array IS PASSED TO Demo1
System.out.println("Main_Array = "+Arrays.toString(Main_Array));
// outputs : Main_Array = [20, 19, 18, 4, 16, 15, 14, 4, 12, 11, 9]
// Since Main_Array points to the original location,
// I cannot access the results of Demo1 , Demo2 when they are void.
// I can use array clone method in Demo1 to get the required result,
// but it would be faster if Demo1 returned the result to main
}
}
public class Demo1
{
public static void Demo1(int A[])
{
int B[] = new int[A.length];
System.out.println("B = "+Arrays.toString(B)); // output : B = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Demo2.Demo2(A,B);
System.out.println("B = "+Arrays.toString(B)); // output : B = [9999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
System.out.println("A = "+Arrays.toString(A)); // output : A = [20, 19, 18, 4, 16, 15, 14, 4, 12, 11, 9]
A = B;
// A was pointing to location of Main_Array, now it points to location of B
// Main_Array pointer still keeps pointing to the original location in void main
System.out.println("A = "+Arrays.toString(A)); // output : A = [9999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
// Hence to access this result from main, I have to return it to main
}
}
public class Demo2
{
public static void Demo2(int AAA[],int BBB[])
{
BBB[0] = 9999;
// BBB points to the same location as B in Demo1, so whatever I do
// with BBB, I am manipulating the location. Since B points to the
// same location, I can access the results from B
}
}
答案 5 :(得分:0)
你的语法有误。只需传入数组的名称即可。顺便说一句 - 读一些常见的格式化东西也是个好主意,例如在Java方法中应该以小写字母开头(这不是它的常规错误)
答案 6 :(得分:0)
class test
{
void passArr()
{
int arr1[]={1,2,3,4,5,6,7,8,9};
printArr(arr1);
}
void printArr(int[] arr2)
{
for(int i=0;i<arr2.length;i++)
{
System.out.println(arr2[i]+" ");
}
}
public static void main(String[] args)
{
test ob=new test();
ob.passArr();
}
}
答案 7 :(得分:0)
spriteBlocchi
答案 8 :(得分:0)
通过这种方式我们可以将一个数组传递给一个函数,这里这个print函数将打印数组的内容。
public class PassArrayToFunc {
public static void print(char [] arr) {
for(int i = 0 ; i<arr.length;i++) {
System.out.println(arr[i]);
}
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
char [] array = scan.next().toCharArray();
print(array);
scan.close();
}
}