CCTest2v.java :  » IDE-Netbeans » java » test2 » Java Open Source

Java Open Source » IDE Netbeans » java 
java » test2 » CCTest2v.java
package test2;

import java.util.ArrayList;
import java.util.List;

public class CCTest2v {
    
    public static void main(String[] args) {
        List<String> l; //Check the CC after <
  
  l = new ArrayList<String>(); //Check the CC after <
  
        l.add("Hello, world"); //Check the signature of the method provided by the CC
  

    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.