我如何从私有方法调用数组?
How do i call an array from private methods?
所以,我必须做一个创造结果的应用程序,我已经完成了所有的事情,我想????但我不知道如何让我的私有方法 outputData 从私有方法 getValue 输出数组结果。
这就是我的
// CreateResults.java
// Create poll results and output them to a file.
import java.io.FileNotFoundException;
import java.util.Formatter;
import java.util.FormatterClosedException;
import java.util.IllegalFormatException;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class CreateResults
{
private int getValue()
{
int[]results = { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
private void outputData(int[] output)
{
for (int row = 0; row < results.length; row++) {
System.out.println(input [row]);
}//end for
} // end method outputData
public static void main( String args[] )
{
CreateResults application = new CreateResults();
application.outputData();
} // end main
} // end class CreateResults
您的数组仅存在于方法范围内。把定义放在外面, ,使它成为 class 变量,像这样:
public class CreateResults
{
int[]results;
private int getValue()
{
results = new int[] { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
}
要使您的代码正常工作,您需要使 getValue
public(因为它没有 return 任何东西,所以使其无效)
然后在你的 main
中你可以调用 application.getValue()
这将创建你的数组然后调用 outputData
public void getValue()
{
int[]results = { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
public static void main( String args[] )
{
CreateResults application = new CreateResults();
application.getValue ();
} //
另外,当您 outputData
正在处理 output
的输入参数时,您需要将其更改为
private void outputData(int[] output)
{
for (int row = 0; row < output.length; row++) {
System.out.println(output[row]);
}
}//e
所以,我必须做一个创造结果的应用程序,我已经完成了所有的事情,我想????但我不知道如何让我的私有方法 outputData 从私有方法 getValue 输出数组结果。
这就是我的
// CreateResults.java
// Create poll results and output them to a file.
import java.io.FileNotFoundException;
import java.util.Formatter;
import java.util.FormatterClosedException;
import java.util.IllegalFormatException;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class CreateResults
{
private int getValue()
{
int[]results = { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
private void outputData(int[] output)
{
for (int row = 0; row < results.length; row++) {
System.out.println(input [row]);
}//end for
} // end method outputData
public static void main( String args[] )
{
CreateResults application = new CreateResults();
application.outputData();
} // end main
} // end class CreateResults
您的数组仅存在于方法范围内。把定义放在外面, ,使它成为 class 变量,像这样:
public class CreateResults
{
int[]results;
private int getValue()
{
results = new int[] { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
}
要使您的代码正常工作,您需要使 getValue
public(因为它没有 return 任何东西,所以使其无效)
然后在你的 main
中你可以调用 application.getValue()
这将创建你的数组然后调用 outputData
public void getValue()
{
int[]results = { 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9 };
outputData(results);
} // end method getValue
public static void main( String args[] )
{
CreateResults application = new CreateResults();
application.getValue ();
} //
另外,当您 outputData
正在处理 output
的输入参数时,您需要将其更改为
private void outputData(int[] output)
{
for (int row = 0; row < output.length; row++) {
System.out.println(output[row]);
}
}//e