Code如下: 1importjava.io.FileNotFoundException;2importjava.io.IOException;3importjava.io.InputStream;4importjava.util.Properties;56publicclassGetProperties {//不用static7publicString getCotent(){//不用static8String content=”";910try{11Properties properties =newProperties();1213InputStream is = get...
报错原文:Cannot make a static reference to the non-static method maxArea(Shape[]) from the type ShapeTestb 报错原因:在一个类中写了一个public void maxArea ()方法和一个main()方法,在main()方法中直接调用maxArea()方法就出现如题的错误。 解决方法,有两种: 方法一、maArea()定义时加上修饰符sta...
Cannot make a static reference to the non-static method的解决方法,报错原因:在一个类中写了一个publicStringgetContent()方法和一个main()方法,getContent()方法中包含了getClass()方法,在main()方法中直接调用了getContent()就出现如题的错误。这样一样解决方法:
百度试题 结果1 题目java报错:Cannot make a static reference to the non-static method getTitle() from the type Book 相关知识点: 试题来源: 解析 展开全部 右边输出的Book都小写就没问题了。大写Book是类,小写book是你建立的对象。 反馈 收藏
- -!User是一个类名,用类名只能调静态方法,你这个getUserName是非静态方法,所以要在对象上面调用,先要获取一个User类的对象 User user = new ("用户",false);(或者其他方式获取对象),然后再调用user.getUserName();或者你是有个全局变量user,把User中的U改成u就行了~...
public static String getRs(String exp) 设置成静态的
你这里调用错了,你上面不是声明了 Resources resource=this.getBaseContext().getResources();你下面报错的地方应该使用你得到的resource对象,而不是使用Resources这个类去取,这个类是没有getDrawable的方法的,估计你是用提示的直接出来的吧
“Cannotmakeastaticreferencetothenon-staticmet。。。报错原⽂:Cannot make a static reference to the non-static method maxArea(Shape[]) from the type ShapeTestb 报错原因:在⼀个类中写了⼀个public void maxArea ()⽅法和⼀个main()⽅法,在main()⽅法中直接调⽤maxArea()⽅法就...
错误Cannot make a static reference to the non-static method findAllUsers(),今天写junit小测试,出现了这个错误"Cannotmakeastaticreferencetothenon-staticmethodfindAllUsers()fromthetypeDAO"
楼上回答的不知所以!AddStudentDAO是接口,不能被实例化,变量引用也不对!下面是我给你改的。劝楼主一句话,忠言逆耳:还是先学好j2se基础再学框架吧。Override public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)throws Exception...