Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 Java 中的 Swing,它指出很多按钮都继承自抽象按钮,我不确定这意味着什么。我是否必须实现或扩展它,抽象按钮的目的是什么?
抽象按钮是一个框架提供的类,它实现了按钮的一些(但不是全部)行为。最有可能的是,您永远不必扩展它。
为了记录,“扩展”和“创建子类”是一回事。至于“实现”,在Java中,该术语用于实现接口。
抽象按钮类定义了摆动中按钮和菜单项的常见行为。