gpt4 book ai didi

java - 如何调用使用可能未初始化的数组作为参数的方法?

转载 作者:行者123 更新时间:2023-12-01 12:26:28 26 4
gpt4 key购买 nike

我正在编写一个程序,将文本文件读入并行数组,然后允许用户请求将匹配条件的条目打印到单独的文件中。我在代码开头声明这些数组,但直到稍后才初始化它们,因为它们的长度依赖于从文件中提取的数据。

我现在正在尝试编写将过滤结果打印到文件的方法,但是 Eclipse 告诉我无法将它们作为参数传递,因为它们没有初始化。但它们是在循环内初始化的。我无法提前初始化它们,因为程序还不知道所需的长度。

相关代码

            filterLocation(time, longitude, magnitude, latitude, location, description, entries);

当我尝试从主方法调用该方法时,错误在哪里

public static void filterLocation (String[] time, 
double[] latitude,
double[] longitude,
double[] magnitude,
String[] location,
String[] description,
int entries )

我正在尝试编写的方法,其中 Eclipse 没有检测到错误。

    String[] time;
double[] latitude;
double[] longitude;
double[] magnitude;
String[] location;
String[] description;

声明变量的地方,就在 public static void main...

if(entries!=0){
time = new String[entries];
latitude = new double[entries];
longitude = new double[entries];
magnitude = new double[entries];
location = new String[entries];
description = new String[entries];

它们初始化的地方,嵌套在 while 循环、if 语句和 try block 中

最佳答案

初始化调用filterLocation的方法中的变量。看来您没有在那里初始化变量。

编辑:

您的代码中有一个条件

 if(entries!=0){

这会阻止初始化。编译器指出条件如果条目 = 0 会怎样?不满足该条件。

您也应该满足该条件以避免编译错误。

请参阅下面的虚拟代码。

public static void main(String[] args) {

    int a;
if (args != null) {
a = 10;
} else {
a = 11;
}
sampleMethod(a);

}

public static void sampleMethod(int a) {
// TODO Auto-generated method stub

}

去掉else条件,看看编译错误。

希望您能理解这个问题。

编辑

或者调用条件本身内部的方法。请参阅虚拟代码。

public static void main(String[] args) {

int a;
if (args != null) {
a = 10;
sampleMethod(a);
}

}

public static void sampleMethod(int a) {
// TODO Auto-generated method stub

}

编辑

或者变量应该在类级别。

public class TestMethod {
private int a;

public static void main(String[] args) {
TestMethod method = new TestMethod();
method.wrapperMethod(args);

}

public void wrapperMethod(String[] args) {
if (args != null) {
a = 10;
}
sampleMethod(a);
}

public static void sampleMethod(int a) {
// TODO Auto-generated method stub

}

引用自java spec

Each method parameter (§8.4.1) is initialized to the corresponding argument value provided by the invoker of the method (§15.12).

A local variable (§14.4, §14.14) must be explicitly given a value before it is used, by either initialization (§14.4) or assignment (§15.26), in a way that can be verified using the rules for definite assignment (§16).

关于java - 如何调用使用可能未初始化的数组作为参数的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26292825/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com