Talk:Qt Coding Style: Difference between revisions
Jump to navigation
Jump to search
Deleted-487 (talk | contribs) (suggestion for Conditional Operator) |
(No difference)
|
Revision as of 11:37, 8 June 2015
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;