fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. ExemploInicializador2 objeto = new ExemploInicializador2();
  13. }
  14. }
  15.  
  16.  
  17. class ExemploInicializador2 {
  18.  
  19. private String nome = "Aurélio";
  20. private String sobrenome = "Soares";
  21. private int idade = 25;
  22. private double f = 354.34;
  23.  
  24. // Bloco Inicializador
  25. {
  26. System.out.println ("Nome: " +nome);
  27. System.out.println ("Sobrenome: " +sobrenome);
  28. System.out.println ("Idade: "+idade);
  29. System.out.println ("F: "+f);
  30. }
  31. // Construtor
  32. public ExemploInicializador2 () {
  33. System.out.println ("Dentro do Construtor");
  34. }
  35. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
Nome: Aurélio
Sobrenome: Soares
Idade: 25
F: 354.34
Dentro do Construtor