找不到或无法加载主类错误

J2EE 码拜 8年前 (2017-04-16) 1260次浏览
代码如下
public class SyncThread implements Runnable {
public static void main(String[] args) {
System.out.println(“this is”+ count);
}
private static int count;
public SyncThread() {
count = 0;
}
public void run() {
synchronized (this) {
for (int i = 0; i < 5; i++) {
try {
System.out.println(Thread.currentThread().getName() + “:”
+ (count++));
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
public int getCount() {
return count;
}
}
是在myeclips中写的,运行后就报 错误: 找不到或无法加载主类 newa.SyncThread。不是环境变量的问题,是和debug和release调试方法有关吗,小弟对这两种调试方法不是很懂,望各位解惑。
解决方案

20

朋友你的main方法放外面吧,然后调用线程

public class SyncThread implements Runnable {
    private static int count;
    public SyncThread() {
        count = 0;
    }
    public void run() {
        synchronized (this) {
            for (int i = 0; i < 5; i++) {
                try {
                    System.out.println(Thread.currentThread().getName() + ":"
                            + (count++));
                    Thread.sleep(100);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }
    public int getCount() {
        return count;
    }
}
class test {
    public static void main(String[] args) {
        SyncThread s = new SyncThread();
        s.run();
    }
}

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明找不到或无法加载主类错误
喜欢 (0)
[1034331897@qq.com]
分享 (0)