C++の条件演算子(三項演算子)の使い方
原題: c++ - How do I use the conditional (ternary) operator ...
分析結果
- カテゴリ
- 経済
- 重要度
- 41
- トレンドスコア
- 9
- 要約
- 三項演算子(?)は、if-else文を短縮する方法であり、他の言語では即時if文とも呼ばれます。例えば、VBではIIf(condition,true-clause,false-clause)の形式で使用されます。
- キーワード
The ternary operator ? is a way of shortening an if-else clause, and is also called an immediate-if statement in other languages (IIf(condition,true-clause,false-clause) in VB, for example).