Let's say I have:
public void one() {
two();
// continue here
}
public void two() {
three();
}
public void three() {
// exits two() and three() and continues back in one()
}
Is there any methods to doing this?
|
Let's say I have:
Is there any methods to doing this? | ||||
|
feedback
|
|
Assuming you can change the
| |||
|
feedback
|
|
The only way to do this without change method two() is to throw an Exception. If you can change the code you can return a boolean which tells the caller to return. However the simplest solution is to inline the methods into one larger method. If this is too large you should retsructure it another way and not place complex controls between methods like this. Say you have
You can add an unchecked exception if you cannot change two();
You can return a boolean to say return, if you can change two()
Or you can inline the structures
| |||||||
feedback
|
|
Looking at your code, if you call one, it then calls two, which calls three.. If you leave it as it is, thats exactly what it WILL do. The line after two (in your one) function, will be only done once its come back from two, and it wont do that until two has finished with three.. | |||||||
feedback
|