问题~
源码:
public class helloworld
{
public static void main(String[] args)
{
System.out.println("hello, world !");
}
}
编译通过了,怎么就无法运行了呢?
在dos下 输入 java helloworld 报错
exception in thread "main" java.lang.NoClassDefFoundError:helloworld
我在path和classpath中都设置好了的,怎么还是无法运行啊?