스레드를 경량프로세스라고 부를 수 있습니다. Java는 멀티스레딩을 지원하므로 애플리케이션 두 개 이상의 작업 을 동시에 수행할 수 있습니다. 모든 Java 프로그램에는 프로그램이 시작될 때 JVM(Java Virtual Machine)에 의해 생성되는 메인 스레드라는 스레드가 하나 이상 있습니다. () 메서드는 메인 스레드에서 호출됩니다. Java에서 스레드를 생성하는 방법에는 두 가지가 있습니다. 하나는 Thread 클래스를 확장하는 것이고, 다른 하나는 Runnable 인터페이스를 구현하는 것입니다.
아래 프로그램에서 implementationRunnable인터페이스 없이 예제 public class CreateThreadWithoutImplementRunnable { <strong>//</strong>
without implements Runnable
public static void main(String[] args) {
new Thread(new Runnable() {
public void run() {
for (int i=0; i <= 5; i++) {
System.out.println("run() method of Runnable interface: "+ i);
}
}
}).start();
for (int j=0; j <= 5; j++) {
System.out.println("main() method: "+ j);
}
}
}
output
main() method: 0 run() method of Runnable interface: 0 main() method: 1 run() method of Runnable interface: 1 main() method: 2 run() method of Runnable interface: 2 main() method: 3 run() method of Runnable interface: 3 main() method: 4 run() method of Runnable interface: 4 main() method: 5 run() method of Runnable interface: 5
위 내용은 Runnable 인터페이스를 구현하지 않고 Java에서 스레드를 생성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!