当前位置: 技术问答>java相关
JBuilder中类找不到
来源: 互联网 发布时间:2015-11-12
本文导语: 各位高手: 我初次使用JBuilder,将之装在F盘下,并写下了如下代码: package try1; import java.io.*; public class try1 { public try1() {} public static void main(String[] args) { system.out.println("helloworld"); } } 但是运...
各位高手:
我初次使用JBuilder,将之装在F盘下,并写下了如下代码:
package try1;
import java.io.*;
public class try1 {
public try1() {}
public static void main(String[] args) {
system.out.println("helloworld");
}
}
但是运行时出现 Error #: 302 : cannot access class system.out; java.io.IOException: class not found: class system.out at line 10, column 10
恳请各位高手指教,解我困惑,谢谢!:)
我初次使用JBuilder,将之装在F盘下,并写下了如下代码:
package try1;
import java.io.*;
public class try1 {
public try1() {}
public static void main(String[] args) {
system.out.println("helloworld");
}
}
但是运行时出现 Error #: 302 : cannot access class system.out; java.io.IOException: class not found: class system.out at line 10, column 10
恳请各位高手指教,解我困惑,谢谢!:)
|
注意大小写,应该是System:
System.out.println("helloworld");
System.out.println("helloworld");
|
System中的S大写,是个公共类,通过类直接调用变量out
|
system.out.println("helloworld");
System.out.println("helloworld");
注意大小写
System.out.println("helloworld");
注意大小写