Given the following function call in C
:
fooFunc( barFunc(), bazFunc() );
The order of execution of barFunc
and BazFunc
is not specified, so barFunc()
may be called before bazFunc()
or bazFunc()
before barFunc()
in C
.
Does Java
specify an order of execution of function argument expressions or like C
is that unspecified?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…