Talk:Qt Coding Style
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;