当前位置: 技术问答>java相关
关于传递参数到匿名类的构造器的问题
来源: 互联网 发布时间:2015-03-06
本文导语: 大家看看,我有几点不明白: 1.这个匿名类为什么是Button类的子类,而不是Button类 2.不是说匿名类没有构造器的吗? // Assume this code appears in some method Button b = new Button(“Anonymous Button“) { // behavior ...
大家看看,我有几点不明白:
1.这个匿名类为什么是Button类的子类,而不是Button类
2.不是说匿名类没有构造器的吗?
// Assume this code appears in some method
Button b = new Button(“Anonymous Button“)
{
// behavior for the button
};
// do things with the button b...
...
// This is not code you write! This exemplifies what the
// compiler creates internally when asked to compile
// something like the previous anonymous example
class AnonymousButtonSubclass extends Button
{
public AnonymousButtonSubclass(String s)
{
super(s);
}
}
1.这个匿名类为什么是Button类的子类,而不是Button类
2.不是说匿名类没有构造器的吗?
// Assume this code appears in some method
Button b = new Button(“Anonymous Button“)
{
// behavior for the button
};
// do things with the button b...
...
// This is not code you write! This exemplifies what the
// compiler creates internally when asked to compile
// something like the previous anonymous example
class AnonymousButtonSubclass extends Button
{
public AnonymousButtonSubclass(String s)
{
super(s);
}
}
|
实际上这个是一个Button的子类,它重载了在括号中所声明的方法。
匿名类是不允许有和父类不相同的构造函数,不是不允许有
你可以这样来重载
new Button("123")
{
{
//do something in constructor
}
}
匿名类是不允许有和父类不相同的构造函数,不是不允许有
你可以这样来重载
new Button("123")
{
{
//do something in constructor
}
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。