fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Value {}
  6.  
  7. class Ideone
  8. {
  9. public static void main (String[] args) throws java.lang.Exception
  10. {
  11. Map<String, Value[]> array_memory = new HashMap<String, Value[]>();
  12. Value[] array = new Value[5];
  13. String id = "1";
  14. array_memory.put(id, array);
  15. }
  16. }
Success #stdin #stdout 0.1s 27700KB
stdin
Standard input is empty
stdout
Standard output is empty