网易2014年校招杭州站的一道题目_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 网易2014年校招杭州站的一道题目

网易2014年校招杭州站的一道题目

 2013/10/19 0:47:22  lxtc2014  程序员俱乐部  我要评论(0)
  • 摘要:记下来只为给自己一个教训:classBase{privateStringname="base";publicBase(){tellName();printName(name);}publicvoidtellName(){System.out.println("Basetell:"+name);}publicvoidprintName(Stringname){System.out.println("Baseprint:"+name);}}publicclassDerivedextendsBase
  • 标签:
记下来只为给自己一个教训:
class="java">
class Base{
	private String name = "base";
	public Base() {
		tellName();
		printName(name);
	}
	
	public void tellName(){
		System.out.println("Base tell: "+name);
	}
	
	public void printName(String name){
		System.out.println("Base print: "+name);
	}
	
}
public class Derived extends Base{
	private String name = "derived";
	
	public Derived() {
		tellName();
		printName(name);
	}
	
	public void tellName(){
		System.out.println("Derived tell: "+name);
	}
	
	public void printName(String name){
		System.out.println("Derived print: "+name);
	}
	public static void main(String[] args) {
		new Derived();
	}
}

输出:
Derived tell: null
Derived print: base
Derived tell: derived
Derived print: derived
  • 相关文章
发表评论
用户名: 匿名