问答详情
源自:7-1 什么是 Java 中的封装

关于set和get方法和老师写的代码一样,为什么就是运行不了,求大神指明错误?


https://img4.mukewang.com/5c6bbdd80001849310030451.jpg

https://img4.mukewang.com/5c6bbdd80001508311830512.jpg

第九行错误显示:the method setCore(int) is undefined for the type Car.

第十行错误显示:the method getCore(int) is undefined for the type Car.


提问者:霸气小肆毛 2019-02-19 16:31

个回答

  • 任探員
    2019-02-19 16:38:30
    已采纳

    public class Car{

             private int core;

             public void setCore(int core){

              this.core = core;

    }

             public int getCore(){

             return this.core

    }

             Car hello = new Car();

             System.out.print(hello.core(6));


  • 慕九州7151396
    2019-02-28 11:32:06

    不是,你自己的类名是Inicar,创建类的对象也是  IniCar  hello = new  IniCar();

  • 任探員
    2019-02-19 17:26:02

    代码我看着没问题,你应该是没保存,保存一下再运行