fork download
  1. public class Main
  2. {
  3. public static void main(String args[])
  4. {
  5. Object[] objects = new Object[] {"test", "test2", "test3"};
  6. String[] strings = (String[]) objects;
  7. for (String s : strings) System.out.println(s);
  8. }
  9. }
Runtime error #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
Standard output is empty