preemptive scheduling,优先级别最高的任务会被执行,除非它进入等待状态或者死了或者一个更高优先权的任务进来.time slicing,a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based on priority and other factors.
题目一You need to store elements in a collection that guarantees that no duplicates are stored and all elements can be access in nature order, which interface provies that capabiliy? A. java.util.Map B. java.util.Collection C. java.util.List D. java.util.Set答案 D题目二 List, Set, Map是否继承自Collection接口,它们有什么区别?