/* * File:helloworld.java * this program display helloworld on the screen */ import acm.graphics.*; import acm.program.*; public class helloworld extends graphicsprogram{ public void run(){ add(new Glabel("hello,world",100,75));
} } 本人是JAVA菜鸟,在eclipse中输入这段代码后(acm.java已经添加在工程中),运行时出现selection dose not contain a main type,请大虾指明是怎么回事,应该怎么改才可以运行。
最新回答
害羞的初恋
2024-10-13 08:25:43
selection dose not contain a main type,意思是当前选择不是主类型......这个类不是主类,没有main方法,直接在它上面运行当然会出错了。