问号字符('?')在C++中是什么意思?

What does the question mark character (#39;?#39;) mean in C++?(问号字符(#39;?#39;)在C++中是什么意思?)
本文介绍了问号字符('?')在C++中是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

int qempty()
{
    return (f == r ? 1 : 0);
}
在上面的代码段中,&q;?&q;是什么意思?我们可以用什么替换它?

推荐答案

通常称为conditional operator,这样使用时:

condition ? result_if_true : result_if_false

..。如果condition求值为true,则表达式求值为result_if_true,否则求值为result_if_false

为syntactic sugar,此时可替换为

int qempty()
{ 
  if(f == r)
  {
      return 1;
  } 
  else 
  {
      return 0;
  }
}

注意:有人将?:称为"三元运算符",因为它是他们使用的语言中唯一的三元运算符(即接受三个参数的运算符)。

这篇关于问号字符('?')在C++中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

error when trying to run an overloaded function with float parameters.(尝试运行带有浮点参数的重载函数时出错。)
C++ lt;lt; operator overloading without friend function(没有友元函数的C++lt;lt;运算符重载)
C++ - How does the compiler decide between overloaded functions with reference types as parameter?(C++-编译器如何决定使用引用类型作为参数的重载函数?)
How can I invoke an overloaded () operator on the keyword this?(如何对关键字this调用重载()运算符?)
How do I denote a pure virtual function in a UML class diagram?(如何在UML类图中表示纯虚函数?)
MPI parallel IO in ASCII format (How do I do it?)(ASCII格式的MPI并行IO(我该怎么做?))