fork download
  1. import java.util.Stack;
  2.  
  3. class Scratch {
  4. public static void main(String[] args) {
  5. int N = 1;
  6. Stack<?>[] s = new Stack<?>[N];
  7. System.out.println(s);
  8. }
  9. }
  10.  
Success #stdin #stdout 0.09s 320256KB
stdin
Standard input is empty
stdout
[Ljava.util.Stack;@25154f