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.

One.java 246B

12345678910111213141516
  1. import java.util.List;
  2. public class One {
  3. @SuppressWarnings("rawtypes")
  4. public void m(List l) {
  5. }
  6. @SuppressWarnings("unchecked")
  7. public void m2(List<?> input) {
  8. List<String> ls = (List<String>)input;
  9. System.out.println(ls);
  10. }
  11. }