editor does not contain a main type的问题
在编写java代码的时候,一定要在英文状态下输入大括号,小括号,分号!! package baobao; public class Text4 { public static void main( s tring[] args){ for(int i = 1;i <= 12;i++){ System.out.println("第" + i + "月"); for(int j = 1;j <= 30;j++){ System.out.println("第"+ i + "月第" + j +"日"); } } } } 一、上面代码在eclipse,检测不出任何错误,但是就是不能运行,快捷键ALT+Shift+X,j 运行弹出对话框: editor does not contain a main type: 编辑器中不包含的主要类型 二、用jdk自带的编译器,编译:查出错误原因, 原来是String这个单词的首字母“S”打成了小写。可见eclipse 集成开发环境(IDE) 下的编译器有一定的缺陷。 来源: oschina 链接: https://my.oschina.net/u/436328/blog/55131