Java中的泛型

我们的集合是可以盛放各种元素的,为了防止出现输入其他数据类型,我们引入了泛型

Java中的泛型

coursr.java

package com.imooc.collection;
/*
 * 课程类
 */
public class course {
	
	public String id;
	
	public String name;

	public course(String id,String name){
		this.id=id;
		
		this.name=name;
	}
}

TestGeneria.java

package com.imooc.collection;
import java.util.ArrayList;
import java.util.List;


public class TestGeneric {
	
	public static void main(String[] args){
		 TestGeneric tg = new TestGeneric();
		 tg.testAdd();
		 tg.testForEach();
		
	}
	
	/*
	 * 带有泛型——course的List类型属性
	 */
	public List<course> courses;
	
	public TestGeneric(){
		this.courses = new ArrayList<course>();
	}
	
	/*
	 * 测试添加
	 */
	public void testAdd(){
		course cr = new course("1","数据结构");
		courses.add(cr);
		//泛型集合中,不能添加泛型规定的类型以外的对象
		//courses.add("不能添加泛型规定的类型以外的对象");
	}

	/*
	 * 测试循环遍历
	 */
	public void testForEach(){
		for(course cr : courses){
			System.out.println(cr.id+cr.name);
		}
	}
}

 

Java中的泛型

 

Java中的泛型

TestGeneria.java

package com.imooc.collection;
import java.util.ArrayList;
import java.util.List;


public class TestGeneric {
	
	public static void main(String[] args){
		 TestGeneric tg = new TestGeneric();
		 tg.testAdd();
		 tg.testForEach();
		 tg.testBasicType();
	}
	
	/*
	 * 带有泛型——course的List类型属性
	 */
	public List<course> courses;
	
	public TestGeneric(){
		this.courses = new ArrayList<course>();
	}

    /*
     * 泛型不能使用基本类型
     */
	public void testBasicType(){
		List<Integer> list = new ArrayList<Integer>();
		list.add(1);
		System.out.println("基本类型必须使用包装类作为泛型");
	}
	/*
	 * 测试添加
	 */
	public void testAdd(){
		course cr = new course("1","数据结构");
		courses.add(cr);
		//泛型集合中,不能添加泛型规定的类型以外的对象
		//courses.add("不能添加泛型规定的类型以外的对象");
	}

	/*
	 * 测试循环遍历
	 */
	public void testForEach(){
		for(course cr : courses){
			System.out.println(cr.id+cr.name);
		}
	}
}

 

上一篇:2019.4.24 一题(CF 809E)——推式子+虚树


下一篇:洛谷 5290 [十二省联考2019]春节十二响——堆