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

来源:7-1 什么是 Java 中的封装

霸气小肆毛

2019-02-19 16:31


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.


写回答 关注

3回答

  • 任探員
    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));


    霸气小肆毛

    谢谢大佬,你的这个方法我懂了。 我还想再弱弱的问一下,为啥我之前得方法是错误的啊,我想知道错在哪里,我好像看老师也这样写的。

    2019-02-19 16:48:49

    共 1 条回复 >

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

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

    城序圆

    inicar是测试类,,,

    2019-03-06 19:58:42

    共 1 条回复 >

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

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

    霸气小肆毛

    明白了,谢谢!

    2019-02-19 18:08:55

    共 1 条回复 >

Java入门第二季 升级版

课程升级!以终为始告别枯燥,在开发和重构中体会Java面向对象编程的奥妙

530646 学习 · 6091 问题

查看课程

相似问题