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. import java.lang.reflect.Field;
  8.  
  9. /* Name of the class has to be "Main" only if the class is public. */
  10. class Ideone
  11. {
  12. public String quesito = new String ("test");
  13. public String lechita = new String ("test");
  14. public String jocoque = new String ("test");
  15.  
  16. public static void main (String[] args) throws java.lang.Exception, java.lang.IllegalArgumentException, java.lang.IllegalAccessException
  17. {
  18.  
  19. Ideone t = new Ideone();
  20. for(Field f : t.getClass().getFields()) {
  21.  
  22. System.out.println("nombre instancia: " + f.getName());
  23. }
  24. }
  25. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
nombre instancia: quesito
nombre instancia: lechita
nombre instancia: jocoque