gpt4 book ai didi

java - 如何在 Java 中的对象参数中初始化数组?

转载 作者:行者123 更新时间:2023-12-01 19:42:34 25 4
gpt4 key购买 nike

我正在尝试编写一个程序,但在语法上遇到了问题。我正在尝试创建一个数组作为对象的参数,但我在语法上遇到了问题。

public class Example {
String[] words;

public Example(words) {
this.words = words;
}
}

public class Construction {
Example arrayExample = new Example({"one", "two", "three"});
}

当我尝试编译它时,这给了我一个错误。有没有办法在不首先在对象声明之外初始化数组的情况下执行此操作?

最佳答案

您的参数化构造函数的参数中缺少字符串数组words的数据类型。它必须是 String [] Words 才能匹配私有(private)数据成员数组 String[] Words 的数据类型。像这样:

public class Example {
String[] words;

public Example(String[] words) {
this.words = words;
}
}

您可以从 main 调用构造函数,而无需初始化 String[] 数组,如下所示:

public class Construction {
Example arrayExample = new Example(new String[]{"one", "two", "three"});
}

它的作用是,它在运行时实例化一个对象并将其作为参数直接发送给构造函数。

关于java - 如何在 Java 中的对象参数中初始化数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54832440/

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