Board logo

标题: 菜鸟问题 [打印本页]

作者: f85144    时间: 2011-5-26 00:44     标题: 菜鸟问题

class myclass {
        public int x;
        myclass(){
                x=0;
        }
        public void saysomething(){
                System.out.println("welcome to here");
                }
}
public class test {
        public static void main(String args[]){
        myclass test1=new myclass();
        System.out.println(test1.x);
        test1.saysomething();
        }
}
我创建的类是myclass,为什么有错说是“the public type test must be defined in its own file ”??
作者: f85144    时间: 2011-5-26 00:45

程序本身是没有问题的,就是那个test的类为什么要从另外的文件中定义??
作者: fwbook    时间: 2011-5-26 08:31

基本上一个文件一个类。




欢迎光临 万卷图书 (http://wanjuanchina.net/) Powered by Discuz! 7.0.0