Java: Ternary with no return. (For method calling)(Java:没有回报的三元.(用于方法调用))
问题描述
我想知道是否可以进行三元运算但不返回任何内容.
I was wondering if it was possible to do a ternary operation but without returning anything.
如果在 Java 中不可能,那么在其他语言中是否可能,如果可以,哪些适用?
If it's not possible in Java is it possible in other languages, if so which ones apply?
name.isChecked() ? name.setChecked(true):name.setChecked(false);
推荐答案
不,你不能.但是,与 if-else
语句相比,这有什么意义呢?您真的要保存 7 个字符吗?
No, you can't. But what's the point of this over an if-else
statement? Are you really trying to save 7 characters?
if (name.isChecked()) {
name.setChecked(true);
} else {
name.setChecked(false);
}
或者如果你喜欢糟糕的风格:
or if you prefer bad style:
if (name.isChecked()) name.setChecked(true); else name.setChecked(false);
别介意你可以做(在这种情况下):
Never mind the fact that you can just do (in this case):
name.setChecked(name.isChecked());
三元或条件"运算符的重点是将条件引入表达式.换句话说,这是:
The point of the ternary or "conditional" operator is to introduce conditionals into an expression. In other words, this:
int max = a > b ? a : b;
是这个的简写:
int max;
if ( a > b ) {
max = a;
} else {
max = b;
}
如果没有产生值,则条件运算符不是快捷方式.
If there is no value being produced, the conditional operator is not a shortcut.
这篇关于Java:没有回报的三元.(用于方法调用)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:没有回报的三元.(用于方法调用)


- Eclipse 插件更新错误日志在哪里? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01