本帖最后由 wangkerui 于 2014-6-17 16:56 编辑
Test 文件的内容
- class Test
- {
- public static void main(String[] args)
- {
- System.out.println("hello");
- }
- }
复制代码
String 文件的内容
- class String
- {
- public static void main(String[] args)
- {
- System.out.println("hello");
- }
- }
复制代码
两份文件内容都是随便写的,单独运行 Test.java 文件可以得到 hello , 只要两个文件放一起,随便编译其中哪个,都会出问题,这是怎么回事啊??
|