A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

是不是这个意思?

3 个回复

倒序浏览
  1. class test_parent{
  2.         int x = 5;
  3.         int y = 10;
  4.         int get_1(){
  5.                 return this.x + this.y;
  6.         }
  7. }
  8. class test_4 extends test_parent{
  9.         int y;
  10.         test_4(int a){
  11.                 y = a;
  12.         }
  13. }
  14. class  Test2{
  15.         public static void main(String[] args) {
  16.                 test_4  a1=new test_4(1);
  17.                 int x = a1.get_1();
  18.                 System.out.println("x="+x);
  19.         }
  20. }
复制代码
输出的是15     是不是就是我题目的意思?
回复 使用道具 举报
学习一下咯。。。。。。。。。。。。
回复 使用道具 举报
没人说一下么。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马