Hey,
I wonder in what order the following is executed.
Assume there is a vector v passed an argument to a method which has the following:
The question is, does the element FIRST get removed from the vector and THEN the gui will be updated?
thanks
I wonder in what order the following is executed.
Assume there is a vector v passed an argument to a method which has the following:
Code:
try{ return v.remove(0); } finally { updateGui(gui); }
The question is, does the element FIRST get removed from the vector and THEN the gui will be updated?
thanks