标题:[求助]关于final的问题
取消只看楼主
NiceGirl
Rank: 2
等 级:新手上路
威 望:4
帖 子:909
专家分:0
注 册:2006-6-18
 问题点数:0 回复次数:1 
[求助]关于final的问题

class Note {
private String noteName;
private Note(String noteName) {
this.noteName = noteName;
}
public String toString() {
return noteName;
}
public static final Note
MIDDLE_C = new Note("Middle C"),
C_SHARP = new Note("C Sharp"),
B_FLAT = new Note("B Flat");
}
public class Music {
public static void tune(Instrument i) {
i.play(Note.MIDDLE_C);
}
public static void main(String[] args) {
Wind flute = new Wind();
tune(flute);
}
}

class Wind extends Instrument {
public void play(Note n) {
System.out.println("Wind.play()"+n);
}
}

class Instrument {
public void play(Note n) {
System.out.println("Instrument.play()");
}
}

红色的部分不是很理解,高人指点。。

搜索更多相关主题的帖子: final 
2006-08-10 23:03
NiceGirl
Rank: 2
等 级:新手上路
威 望:4
帖 子:909
专家分:0
注 册:2006-6-18
得分:0 
呵呵,受教了,惭愧。。。没看到static
大队长就是大队长啊。。。

[此贴子已经被作者于2006-8-10 23:35:11编辑过]


曾经以为百般艰难,蓦然回首,才发现已飞渡千山。。!
2006-08-10 23:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-83311-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.246259 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved