You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Code2.java 228B

1234567891011
  1. import java.util.*;
  2. public class Code2 {
  3. public static void main(String []argv) {
  4. foo(new ArrayList<String>());
  5. }
  6. public static void foo(ArrayList<String> als) {
  7. var aly = als;
  8. System.out.println(aly.getClass());
  9. }
  10. }