gpt4 book ai didi

java - 使用 run() 代替 main

转载 作者:行者123 更新时间:2023-11-30 02:46:42 24 4
gpt4 key购买 nike

在我的程序中,我想使用 Runnable 的 public void run () 作为 Main 函数来启动我的程序。所以我扩展了它,但无法让它工作。我了解线程,但我不明白如何在这种情况下使用它们。感谢您的帮助。

最佳答案

根据您的陈述“我从它扩展”,我假设您的意思是Runnable。在这种情况下,您只需将 Runnable 包装在 Thread 中并启动即可。

所有Java程序都必须从main方法开始。

public static void main(String... args) {
new Thread(new YourRunnable()).start(); // starts a new thread

// All code below here will run in the current thread
}

关于java - 使用 run() 代替 main,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40026649/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com