首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

札记一

2012-09-24 
笔记一/*** The minimum priority that a thread can have.*/public final static int MIN_PRIORITY 1/

笔记一
    /**
     * The minimum priority that a thread can have.
     */
    public final static int MIN_PRIORITY = 1;

   /**
     * The default priority that is assigned to a thread.
     */
    public final static int NORM_PRIORITY = 5;

    /**
     * The maximum priority that a thread can have.
     */
    public final static int MAX_PRIORITY = 10;

List borrowOrder = Collections.synchronizedList(new LinkedList());

http://blog.csdn.net/feixiaoxing/article/details/6993718

热点排行