Given the following function call in C :
fooFunc( barFunc(), bazFunc() );
The execution order of barFunc and BazFunc not specified, so barFunc() can be called before bazFunc() or bazFunc() before barFunc() in C
Does Java indicate the execution order of the argument expressions of the function, or how does C not indicate this?
java order-of-evaluation jls specifications
tpdi Feb 04 '10 at 17:16 2010-02-04 17:16
source share