次のように三項演算子を使用して絶対関数を記述しました
int abs(int a) {
a >=0 ? return a : return -a;
}
次のエラー メッセージが表示されます
../src/templates.cpp: In function ‘int abs(int)’:
../src/templates.cpp:4: error: expected primary-expression before ‘return’
../src/templates.cpp:4: error: expected ‘:’ before ‘return’
../src/templates.cpp:4: error: expected primary-expression before ‘return’
../src/templates.cpp:4: error: expected ‘;’ before ‘return’
../src/templates.cpp:4: error: expected primary-expression before ‘:’ token
../src/templates.cpp:4: error: expected ‘;’ before ‘:’ token
../src/templates.cpp:5: warning: no return statement in function returning non-void
こう書くと
return a>=0 ? a : -a;
エラーは発生しません。2つの違いは何ですか?