Advertisement
andmalv

[Tip] Volver al metodo main() desde otra clase

Jul 28th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. 1° Forma
  2.  
  3.     Principal p = Principal();
  4.  
  5.     p.main(null);
  6.  
  7. 2° Forma
  8.    
  9.     Principal.main(null)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement