题解 | #重写父类方法#

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    while (scanner.hasNextInt()) {
        int x = scanner.nextInt();
        int y = scanner.nextInt();
        Sub sub = new Sub(x, y);
        System.out.println(sub.sum());
    }
}

}

class Base {

private int x;
private int y;

public Base(int x, int y) {
    this.x = x;
    this.y = y;
}

public int getX() {
    return x;
}

public final int getY() {
    return y;
}

public final int sum() {
    return getX() + getY();
}

}

class Sub extends Base {

public Sub(int x, int y) {
    super(x, y);
}

//write your code here......
public int getX(){
    return 10 * super.getX();//调用父类的函数,并返回其十倍
}

}

全部评论

相关推荐

11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务