Why break cannot be used with ternary operator?

后端 未结 2 780
礼貌的吻别
礼貌的吻别 2021-01-15 00:56
while(*p!=\'\\0\' && *q!=\'\\0\')
{
        if(*p==*q)
        {
               p++;
               q++;
               c++;
        }
        else
        b         


        
2条回答
  •  生来不讨喜
    2021-01-15 01:41

    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.

提交回复
热议问题