Why break cannot be used with ternary operator?

while(*p!='' && *q!='')
{
        if(*p==*q)
        {
               p++;
               q++;
               c++;
        }
        else
        break;
}

I have written this using ternary operator but why its giving error for break statement?

*p==*q?p++,q++,c++:break;

gcc compiler gives this error: expected expression before 'break'


When you use a ternary operator, it is not like an if . The ternary operator has this form:

(condition ? expression_if_true : expression_if_false);

Those two expression must have the same type, otherwise that makes nonsense.

And as Thilo said, you cannot use statement in this operator, only expression. This is because the whole ternary operator must be an expression itself, depending on the condition.


The syntax is:

(condition ? expr_true : expr_false);

expr_true and expr_false must have a common type (which will be the result of the ternary operator). Also, of course, break is not an expression, it is a statement.

链接地址: http://www.djcxy.com/p/84400.html

上一篇: 在switch语句块中声明的自由变量

下一篇: 为什么break不能和三元运算符一起使用?