我需要 Java 中的三元运算符,如果条件为真,它会分配两个变量
我已经看到可以使用多个三元条件,但还没有找到一种在单个条件为真时分配两个变量的方法。这是我想写的方法:
int[] chkNext(int mnd, int y) {
int[] date = new int[2];
mnd = 12 ? mnd = 1, y++ : mnd++; // returns the following: "error: : expected"
date[0] = mnd, date[1] = y;
return date;
}
I have seen that one can use multiple ternary conditions, but haven't found a way to assign two variables if a single condition is true. This is the method I'm trying to write:
int[] chkNext(int mnd, int y) {
int[] date = new int[2];
mnd = 12 ? mnd = 1, y++ : mnd++; // returns the following: "error: : expected"
date[0] = mnd, date[1] = y;
return date;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
if
语句即可。这样:
更好的是:
如果您确实不需要逗号运算符,请不要使用它。
Just use an
if
statement.And this:
Would be better as:
Don't use a comma operator if you don't really need it.
三元运算符的构造是错误的,因为“?”之前应该有条件。正如 Mat 所建议的,更好的选择是使用 if 语句。
三元通常可用于简单的语句,例如
The construct of ternary operator is wrong as there should be condition before '?'. As Mat suggested better option is using if statement.
Ternary can be generally used for simple statements like