So I need to find a JAVA equivalent of the Delphi not.
In Delphi I can do something like this. I have a boolean called CanContinue and while it's FALSE this loop will continue to run.
How can I duplicate this in Java?
Thanks!
Leslie
In an open world there's no need for windows and gates
In Delphi I can do something like this. I have a boolean called CanContinue and while it's FALSE this loop will continue to run.
Code:
while not CanContinue
begin
//some code
Next;
end;
How can I duplicate this in Java?
Thanks!
Leslie
In an open world there's no need for windows and gates