线程优先级的设置及其注意事项
线程优先级的设置及其注意事项package com.xiancheng.bean;/** 线程的优先级* (1)MAX_PRIORITY : 10* (2)NORM_PRIORITY : 5 (这个是默认的优先级)* (3)MIN_PRIORITY : 1** 如何获取和设置线程的优先级* ①获取:getPriority(); 获取线程的优先级* ②设置:setPriority(); 设置线程的优先级** 注意:并不是优先级大的一定先执行,而是先执行的可能性比较大 *