程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java-Java一個很基礎的面試題【求助】

java-Java一個很基礎的面試題【求助】

編輯:編程解疑
Java一個很基礎的面試題【求助】
 public class Apple extends Fruit  {
    private String name = "apple";
    public Apple () {
        tellName();
        printName();
    }
    public void tellName() {
        System.out.println("Apple tell name: " + name);
    }
    public void printName() {
        System.out.println("Apple print name: " + name);
    }
    public static void main(String[] args){
        new Apple();    
    }
}
class Fruit {
    private String name = "fruit";
    public Fruit () {
        tellName();
        printName();
    }
    public void tellName() {
        System.out.println("fruit tell name: " + name);
    }
    public void printName() {
        System.out.println("fruit print name: " + name);
    }
}

我想知道為什麼會輸出4行
以及什麼原因
感謝各位

最佳回答:


1.先走第三行代碼進tellName()方法。打印輸出 Apple tell name: null
2.進入Class Fruit 進入public Fruit()方法中的tellName
3.再走第三行代碼進printName()方法。打印輸出 Apple print name: null
4.進入Class Fruit 進入public Fruit()方法中的printName
5.走第二行代碼 給name賦值apple
6.重復走1-打印輸出 Apple tell name: apple -2-3 -打印輸出 Apple print name:apple

czKerl_
qq_32224861
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved