我在 J.1 Unspecified 行为下查看了SO/IEC 9899:201x :
"The order in which subexpressions are evaluated and the order in which side effects
take place, except as specified for the function-call (), &&, ||, ?:, and comma
operators (6.5)."
这是否意味着在
func1() + func2();
func2() 可以在 func1() 之前执行,甚至在 func1() 期间执行?