gpt4 book ai didi

java - 如何将新数组作为参数传递给 Java 中的方法?

转载 作者:行者123 更新时间:2023-12-01 21:24:18 25 4
gpt4 key购买 nike

我正在尝试将 boolean 值数组传递给方法。此代码有效:

void checkResults(boolean[] isChecked){
//Do something
}

boolean[] isChecked= {true, true};
checkResults(isChecked); //works

但是以下所有尝试都失败了:

     checkResults(new {true, true}); //Compile time error
checkResults({true, true}); //Compile time error
checkResults(true, true); //Compile time error (this one is obvious)

有没有办法在参数中创建一个数组并在一行中传递给方法?

最佳答案

您可以像这样创建一个匿名数组并传递它。

checkResults(new boolean[]{true, true});

关于java - 如何将新数组作为参数传递给 Java 中的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38548022/

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