Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
115 views
in Technique[技术] by (71.8m points)

c++ - What is the motivation to decline C rule "a conditional expression does not yield an lvalue"?

What is the motivation to decline C rule a conditional expression does not yield an lvalue?

In other words: in C it was a motivation (which exactly?) to not yield an lvalue. Why in C++ this motivation was declined (or reconsidered)?

question from:https://stackoverflow.com/questions/65937647/what-is-the-motivation-to-decline-c-rule-a-conditional-expression-does-not-yiel

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

C++ has references; C does not.

You wouldn't be able to bind [mutable] references from an invocation of the conditional operator if not for the following rule:

[expr.cond/5]: If the second and third operands are glvalues of the same value category and have the same type, the result is of that type and value category and it is a bit-field if the second or the third operand is a bit-field, or if both are bit-fields.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...