问答详情
源自:8-3 如何使用 Java 中的对象

类与对象问题

package photo.com; public class wshouji { public static void main(String[] args) { // TODO Auto-generated method stub wshouji phone=new wshouji(); } phone.sendmessage(); } 按老师要求写怎么错了,也不知道怎么改,是什么问题呢?

提问者:林剑南 2016-03-03 17:17

个回答

  • xiaohuahua1105
    2016-03-03 17:31:26

    package photo.com;

    public class wshouji {

    public static void main(String[] args) {

    // TODO Auto-generated method stub

    wshouji phone=new wshouji();

    phone.sendmessage();

    //因为phone是个局部变量

    }

    }



  • 堇延未七
    2016-03-03 17:31:05

    这个是完整的代码吗?

    如果是的话,首先程序中并没有实现方法sendmessage()(强迫症建议:方法名最好写为sendMessage);

    其次,通过对象调用成员方法时,phone.sendmessage();应该放到创建对象的语句后面,中间检查是不是多了一个大括号。