Talk:Qt Coding Style

From Qt Wiki
Revision as of 12:20, 8 June 2015 by Ossi (talk | contribs) (→‎Conditional Operator)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A suggestion(Liang Qi, 2015-06-08)

Conditional Operator

  • If the statement is too long and need to wrap,
return yourobject.function1()
        ? result1
        : result2;
  • For nested conditional operator,
return yourobject.function1()
        ? yourobject.function2()
           ? result1_1
           : result2_2
        : result2;
To me, this looks like just a case of the usual line continuation and indentation rules. --Ossi (talk) 12:20, 8 June 2015 (UTC)