为了账号安全,请及时绑定邮箱和手机立即绑定

new Interface里有两个方法如何实现

    new IgraphDo() {
        
        double circumference,size,r;
        final double  PI = 3.14;
        @Override
        public void size() {
            // TODO Auto-generated method stub
            size = PI * r * r;
            System.out.println("这个圆形的面积是:" + size);
        }
        
        @Override
        public void circumference() {
            // TODO Auto-generated method stub
            circumference = 2 * PI * r;    
            System.out.println("这个圆形的周长是:" + circumference);
        }
    }.circumference();

//以上只能实现其中一个方法,不能实现调用两个方法吗?

正在回答

1 回答

换一种写法格式,用第一种匿名内部类的写法就可以实现

IgraphDo i=new IgraphDo(){

 double circumference,size,r;

       final double  PI = 3.14;

       @Override

       public void size() {

           // TODO Auto-generated method stub

           size = PI * r * r;

           System.out.println("这个圆形的面积是:" + size);

       }

       

       @Override

       public void circumference() {

           // TODO Auto-generated method stub

           circumference = 2 * PI * r;    

           System.out.println("这个圆形的周长是:" + circumference);

       }

};

i.size();

i.circumference();


0 回复 有任何疑惑可以回复我~
#1

风舞煊天 提问者

谢谢回答,这个我知道,我想问用new Interface的方法直接调用的话,只能调用一个方法吗?
2017-08-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

new Interface里有两个方法如何实现

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信