Example6_3.java C:sche sjava Exampl e6 3 用熏亏力逵娼型的编是了ed 调用继承方法得到的结果-2 class A { float computer (float x, float y) { return x + y; } public int g(int x, int y) { return x + y; 图 6.4 方法重写 } class B extends A { float computer (float ×, float y) { return x * y; } public class Example6 3 { public static void main(String args[ ]) { B b = new B() ; double result = b. computer (8, 9); 1/调用重写的方法 System.out.pr intln(“调用重写方法得到的结果:“+result); int m = b. g (12, 8) ; 11调用继承的方法 System. out.println(“调用继承方法得到的结果:"+m);找出错误在哪里bi并修改
时间: 2024-02-04 19:04:03 浏览: 66
用java编写的有关继承的程序
在 Example6_3.java 文件中,第 7 行应该是这样的:
```
float computer(float x, float y) {
```
而不是:
```
float computer(float ×, float y) {
```
因此,需要将第 7 行的代码修改为以下内容:
```
float computer(float x, float y) {
```
这样就可以成功编译并执行这个程序了。
阅读全文