条件运算符
条件运算符在C、C++、 C#、JavaScript等编程语言中指?:
。但在Java语言中也指&&
和||
。
"?:"
在大多数编程语言中,条件运算符特指?:这个三元运算符。[2]
语法为:
condition ? expression 1 : expression 2
该条件表达式是右结合的。例如,表达式 a ? b : c ? d : e求值时等价于a ? b : (c ? d : e).[2]
参考文献
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.