JAVA中关于主方法调用非静态方法的问题!

publicclassRectangle{privateintheight;privateintwidth;publicRectangle(intheight,intwi... public class Rectangle {

private int height;
private int width;

public Rectangle(int height,int width ){
this.height = height;
this.width = width;

}

public int getsquare(){
return height*width;
}

public static void main(String[] args){
Rectangle square1 = new Rectangle(5,4);
System.out.print(square1.getsquare());//不是说主方法中不能调用非静态方法吗,为什么我这里调用了getsquare的非静态方法却可以运行呢?
}

}
展开
 我来答
yanglu_14
2011-02-09
知道答主
回答量:13
采纳率:0%
帮助的人:10.9万
展开全部
你这里是通过对象square1调用的方法getsquare()
main函数里不能调用非静态方法是指不能通过this调用非静态方法,即
public static void main(String[] args){
getsquare(); //这里会出错
}
zpc5200
2011-02-09 · TA获得超过447个赞
知道小有建树答主
回答量:298
采纳率:0%
帮助的人:203万
展开全部
一个类中不能调用其他类中的非静态方法
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式