Pitfalls of a question mark colon expression in C + +

Source: Internet
Author: User

Pitfalls of a question mark colon expression in C + +

Self-handling Baidu space


    in doing a project, encountering strange bugs, the problem is similar to the following

    int a=1,b=2,c=3,d;

    D=a*b + c? 1:0;

    Q What is the result of d?

    design, I think the result should be 3 (1*2+1)

    The actual D result is 1

    because the question mark is lower in the precedence of the colon expression (the ternary operator precedence is less than the two-ary operator, such as the plus +)

    so the actual run-time D and the following expressions are equivalent:

    D= (a*b + c)? 1:0;

    Instead of the a*b we expected (c? 1:0)


    2014-12-11

    Pitfalls of a question mark colon expression in C + +

    Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.