这个类里有多少错误?_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 这个类里有多少错误?

这个类里有多少错误?

 2014/4/26 18:26:45  guojch  程序员俱乐部  我要评论(0)
  • 摘要:Java基础:下面的类里有几处错误?不通过工具,你能很快的找出来吗?试一下吧!importjava.util.ArrayList;importjava.util.Collection;importjava.util.List;importorg.junit.Test;publicclassTest{staticclassPerson{publicvoidm(Collection<Person>persons){}}staticclassEmployeeextendsPerson
  • 标签:错误
Java基础:

下面的类里有几处错误? 不通过工具,你能很快的找出来吗?试一下吧!

class="java" name="code">

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

import org.junit.Test;


public class Test {

	static class Person {
		public void m(Collection<Person> persons) {
			
		}
	}
	
	static class Employee extends Person {
		public void <T> test() {
		}
		
	}
	
	static class Student extends Person {
		public void m2(Collection<Student> students) {
			super.m(students);
		}
		
	}
	

	public void arrayStoreExceptionTest() {
		Person[] persons = new Employee[5];
		persons[0] = new Employee();
		persons[1] = new Student();
	}
	
	
	@Test
	public void arrayStoreTest() {
		Person[] persons = new Person[2];
		persons[0] = new Employee();
		persons[1] = new Student();
	}
	
	public void genericTest() {
		List<Person> personList = new ArrayList<Employee>();
		
	}
	
	
	
	
	
	static class Generic<T> {
		
		static T t;
		
		static void method1(T t) {
			
		}
		void m1(T t){
			
		}
		
	}
}



上一篇: [NIO.2] 第三十九篇 实现文件监控服务 下一篇: 没有下一篇了!
发表评论
用户名: 匿名