Java 线程工厂接口,示例
原文:https://www . geeksforgeeks . org/thread factory-interface-in-Java-with-examples/
java.util.concurrent 包中定义的线程工厂接口基于工厂设计模式。顾名思义,它用于按需创建新线程。可以通过两种方式创建线程:
1。创建一个扩展类的类,然后创建它的对象。
Java 语言(一种计算机语言,尤用于创建网站)
import java.io.*;
class GFG {
public static void main(String[] args)
{
// Creating a thread
Thread thread = new CustomThread();
thread.start(); // Starting execution of the created
// thread
}
}
// Creating a class that extends the Thread class
class CustomThread extends Thread {
@Override public void run()
{
System.out.println("This is a thread");
}
}
Output
This is a thread
版权属于:月萌API www.moonapi.com,转载请注明出处