Java ThreadLocal initialValue()方法
java.lang.ThreadLocal.initialValue() 方法返回此线程当前线程局部变量的初始值。
1 语法
protected T initialValue()
2 参数
无
3 返回值
此方法返回此线程局部的初始值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java ThreadLocal initialValue()方法
*/
import java.lang.*;
public class ThreadLocalDemo {
public static void main (String [] args) {
newThread t1 = new newThread("R");
newThread t2 = new newThread("S");
// this will call run() method
t1.start();
t2.start();
}
}
class newThread extends Thread
{
private static ThreadLocal t =
new ThreadLocal()
{
protected Object initialValue() {
return new Integer(n--);
}
};
private static int n = 10;
newThread(String name) {
super(name);
}
public void run() {
for(int i = 0; i < 2; i++)
System.out.println (getName() + " " + t.get());
}
}
输出结果为:
R 10
R 10
S 9
S 9
热门文章
优秀文章