fork download
  1. import java.util.*;
  2.  
  3. class ListSize
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. List<String> x = Arrays.asList("a", "b", "c");
  8.  
  9. int n = x.size();
  10.  
  11. System.out.println(n);
  12. }
  13. }
Success #stdin #stdout 0.1s 320576KB
stdin
Standard input is empty
stdout
3