当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ThreadLocalRandom current()用法及代码示例


Java ThreadLocalRandom 类的 current() 方法返回当前线程的 ThreadLocalRandom。它不需要参数。

用法:

public static ThreadLocalRandom current()

参数:

NA

返回值:

此方法返回当前线程的 ThreadLocalRandom。

示例

import java.util.concurrent.ThreadLocalRandom;

public class ThreadLocalRandomCurrentExample {
    public static void main(String[] args) {
    	
    	// Returns the LocalThreadRandom of Current thread	
    	System.out.println("Current thread's LocalThreadRandom name is:" +ThreadLocalRandom.current());
    }
}

输出:

Current thread's LocalThreadRandom name is:[email protected]






相关用法


注:本文由纯净天空筛选整理自 Java ThreadLocalRandom current() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。