gpt4 book ai didi

java - 无法解析 Java 实现 Runnable 中的方法 'start()'

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

我想交替运行两个线程来写下字母表。不知道我在代码中写错了什么,但是 .start()-Method 无法由 IDE 解析。搜索了很多但找不到我的问题的答案。我感谢每一个想法。

public class ABCThread_2 implements Runnable
{
private boolean issmall;
private boolean istall;

public ABCThread_2(boolean istall, boolean issmall)
{
this.istall = istall;
this.issmall = issmall;
}

public void run()
{
if(issmall)
{
for (char c = 'a'; c <= 'z'; c++)
{
try
{
Thread.sleep(250);
}

catch (InterruptedException e)
{

}

System.out.print(c);
}
}

else if(istall)
{
for (char c = 'A'; c <= 'Z'; c++)
{
try
{
Thread.sleep(250);
}

catch(InterruptedException e)
{

}

System.out.print(c);
}
}
}

public static void main(String [] args)
{
ABCThread_2 th1 = new ABCThread_2(false, true);
ABCThread_2 th2 = new ABCThread_2(true, false);
th1.start();
th2.start();


}


}

最佳答案

Runnable 没有 start 方法(ABCThread_2 将继承该方法)。您肯定想调用Thread.start。在这种情况下,请使用您的 Runnable 创建 Thread 实例:

public static void main(String[] args) {
Thread th1 = new Thread(new ABCThread_2(false, true));
Thread th2 = new Thread(new ABCThread_2(true, false));
th1.start();
th2.start();
}

关于java - 无法解析 Java 实现 Runnable 中的方法 'start()',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52932596/

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