Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class StaticMethod {
  2.  
  3. static String nome = "Mackenzie";
  4.  
  5. public static void metodoEstatico() {
  6. String texto = "Alô Alô ";
  7. System.out.println(texto + nome);
  8. }
  9.  
  10. public static void main(String[] args) {
  11. //Exemplo de uso de um método estático.
  12. StaticMethod.metodoEstatico();
  13. }
  14. }
Add Comment
Please, Sign In to add comment