作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 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/
我是一名优秀的程序员,十分优秀!