if(!isAlive){ return; }

I want to ask you, whats mean return in this case ? What we return or i dont know…

We’re not returning anything. We return from the method. If isAlive is false (not true), return i.e. don’t do anything more in this method. Go back to where this was called, we are done here

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms