public class ListRemoveAll { public static void main(String[] args) { // TODO Auto-generated method stub List<Long> list1 = new ArrayList<Long>(); List<Long> list2 = new ArrayList<Long>(); for(int i =0;i<10;i++){ list1.add
一.JavaScript判断对象类型 1.可以使用typeof函数判断对象类型 function checkObject1(){ var str="str"; console.log(typeof(str))//输出"string"; console.log(typeof(str)=="string")//输出true; } 2.使用对象的构造函数属性(constructor),来判断对象的类型: function checkObject2()