search
HomeBackend DevelopmentC++Some interesting observations about the C/C++ ternary operator
Some interesting observations about the C/C++ ternary operatorSep 15, 2023 pm 07:29 PM
ternary operatorc/cobserve

Some interesting observations about the C/C++ ternary operator

We know that the ternary operator is implemented instead of if..else clause. It is represented by ?:. '? The ' symbol is equivalent to the if part, and ':' is equivalent to the else part. The following 3 programs explain some interesting observations in the case of the ternary operator.

The following program compiles without any errors. The return type of a ternary expression is expected to be float (like exp2), and exp3 (that is, a literal zero - int type) is implicitly convertible to float.

#include <iostream>
using namespace std;
int main(){
   int test1 = 0;
   float fvalue = 3.111f;
   cout<< (test1 ? fvalue : 0) << endl;
   return 0;
}

The following program will not compile because the compiler cannot locate or find the return type of the ternary expression, or there is no implicit conversion between exp2 (char array) and exp3 (int).

#include <iostream>
using namespace std;
int main(){
   int test1 = 0;
   cout<< test1 ? "A String" : 0 << endl;
   return 0;
}

The following program may be able to compile, but fail when run. The return type of a ternary expression is restricted to type (char *), but the expression returns an int, so the program fails. Literally, the program attempts to print the string at address 0 at execution time or runtime.

#include <iostream>
using namespace std;
int main(){
   int test1 = 0;
   cout << (test1 ? "A String" : 0) << endl;
   return 0;
}
We can observe that exp2 is treated as output type and exp3 will be able to be converted to exp2 at execution time or runtime. If the conversion is considered implicit, the compiler will Insert converted stub. The compiler will throw an error if the conversion is treated as an explicit operation. If any compiler is able to ignore such errors, the program may fail at execution time or runtime.

The above is the detailed content of Some interesting observations about the C/C++ ternary operator. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
在C/C++中,strcmp()函数用于比较两个字符串在C/C++中,strcmp()函数用于比较两个字符串Sep 10, 2023 am 11:41 AM

Thefunctionstrcmp()isabuilt-inlibraryfunctionanditisdeclaredin&ldquo;string.h&rdquo;headerfile.Thisfunctionisusedtocomparethestringarguments.Itcomparesstringslexicographicallywhichmeansitcomparesboththestringscharacterbycharacter.Itstartscomp

在C/C++中,fseek()函数用于在文件中移动文件指针的位置在C/C++中,fseek()函数用于在文件中移动文件指针的位置Sep 02, 2023 pm 03:57 PM

fseek()在C语言中用于将文件指针移动到特定位置。偏移量和流是指针的目标,它们在函数参数中给出。如果成功,它返回零。如果不成功,它返回非零值。以下是C语言中fseek()的语法:intfseek(FILE*stream,longintoffset,intwhence)这里是在fseek()中使用的参数:stream&minus;这是用于标识流的指针。offset&minus;这是从位置开始的字节数。whence&minus;这是偏移量添加的位置。whence由以下常量

如何在C/C++中检测整数溢出?如何在C/C++中检测整数溢出?Aug 31, 2023 pm 01:53 PM

唯一安全的方法是在溢出发生之前进行检查。虽然有一些不正规的方法可以检查整数溢出。所以,如果你的目标是检测无符号整数相加的溢出,你可以检查结果是否实际上小于两个相加的值。例如,示例代码unsignedintx,y;unsignedintvalue=x+y;booloverflow=value<x;//Alternatively"value<y"shouldalsowork这是因为如果x和y都是无符号整数,如果相加后溢出,它们的值不能大于它们中的任何一个,因为它们需要

使用分支限界法在C/C++中实现0/1背包问题使用分支限界法在C/C++中实现0/1背包问题Sep 04, 2023 pm 08:17 PM

这个想法是为了实现贪婪方法为分数背包问题提供最佳解决方案这一事实。为了检查特定节点是否可以为我们提供更好的解决方案,我们计算最佳解决方案(通过节点)实施贪心方法。如果贪心法本身计算出的解比目前为止最好的解要多,那么我们就无法通过节点获得更好的解。完整的算法如下-根据每单位重量的价值比率的降序对所有项目进行排序,以便可以使用贪心法计算上限。初始化最大利润,例如maxProfit=0创建一个空队列Q。决策虚拟节点创建树并将其插入或排队到Q。虚拟节点的利润和权重为0。当Q不空或为空时执行以下操作。创建

一些关于C/C++三元运算符的有趣观察一些关于C/C++三元运算符的有趣观察Sep 15, 2023 pm 07:29 PM

我们知道三元运算符是代替if..else子句实现的。它由?:表示。'?'符号相当于if部分,':'相当于else部分。以下3个程序解释了三元运算符情况下的一些有趣的观察结果。以下程序能够编译,没有任何错误。三元表达式的返回类型预计为float(与exp2一样),并且exp3(即文字零-int类型)能够隐式转换为float。#include<iostream>usingnamespacestd;intmain(){&nbsp;&nbsp;inttest1=0;&

如何在C/C++中使用枚举?如何在C/C++中使用枚举?Aug 28, 2023 pm 05:09 PM

枚举是C语言中的用户定义数据类型。它用于给整数常量赋予名称,使程序易于阅读和维护。关键字“enum”用于声明一个枚举。以下是C语言中枚举的语法:enumenum_name{const1,const2,.......};Theenumkeywordisalsousedtodefinethevariablesofenumtype.Therearetwowaystodefinethevariablesofenumtypeasfollows.enumweek{sunday,monday,tuesday,

贪心算法的C/C++程序,用于找到最少硬币数量贪心算法的C/C++程序,用于找到最少硬币数量Sep 19, 2023 pm 11:01 PM

贪心算法是一种用于寻找给定问题的最优解决方案的算法。贪婪算法的工作原理是找到每个部分的局部最优解(问题的一部分的最优解),因此表明可以找到全局最优解。在这个问题中,我们将使用贪婪算法算法来找到可以组成给定总和的最小硬币/纸币数量。为此,我们将考虑所有有效的硬币或纸币,即面额为{1,2,5,10,20,50,100,200,500,2000}。我们需要返回需要补足总和的硬币/纸币的数量。让我们举几个例子来更好地理解上下文-示例1-Input:1231Output:7说明-我们需要两张500卢比纸币

在C/C++中,4维数组在C/C++中,4维数组Sep 01, 2023 pm 11:57 PM

一个4维数组是由3维数组组成的数组。算法Begin.Declarethevariables.Declarethearrayelements.Takethenoofelementsasinput.Taketheelementsasinput.Printtheelementsstoredinarray.End.这是一个4D数组的示例。#include<iostream>usingnamespacestd;intmain(){&nbsp;&nbsp;inta[2][2][3

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),