问答详情
源自:8-9 Java 中的 static 使用之静态方法

普通成员方法可以直接访问同类中的其他方法么?

普通成员方法可以直接访问同类中的其他方法么?

提问者:金乘三 2016-07-24 17:15

个回答

  • 慕尼黑2980719
    2016-07-30 22:17:45
    已采纳

    可以直接调用,不同通过对象也不用通过this

  • Start_出发
    2016-08-05 09:21:32

    dui

  • qq_火腿总裁CEO_0
    2016-07-24 17:50:58

    我不知道这个对不对

    public class HelloWorld {

    public void call(){


    System.out.println("woshibiba");


    }

    public void sell(){

    HelloWorld hello1=new HelloWorld();

    hello1.call();

    System.out.println("sjkjsdkjskd");

    }

    public static void main(String[] args) {

           

      

    HelloWorld hello = new HelloWorld();

       

    hello.sell();

    }

    }


  • 慕粉3613389
    2016-07-24 17:41:07

    可以啊

  • 慕侠1443192
    2016-07-24 17:40:10

    可以的