题解 | #重写父类方法#

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-24 11:23
门头沟学院 C++
点赞 评论 收藏
分享
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务