Possible duplicate:
How do warranty options run in Java?
If I have a Java method, for example:
public void func(byte b, byte c) {...}
And I use it as follows:
a = 0;
func(a++, a);
Which parameter is passed first? Because, if I'm not mistaken, if it is left, then b = 0 and c = 1. And if it is correct, then b = 0 and c = 0?
Thank.
0x77D source
share