gpt4 book ai didi

java - 具有不同签名但相同主体的功能

转载 作者:行者123 更新时间:2023-12-02 14:54:11 25 4
gpt4 key购买 nike

考虑一个类

import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class ShortcutButton extends JButton {
public ShortcutButton(String text, KeyStroke[] keyStrokes, ActionListener actionListener) {
super(text);
addActionListener(actionListener);
addShortcut(keyStrokes);
}
public ShortcutButton(String text, KeyStroke keyStrokes, ActionListener actionListener) {
super(text);
addActionListener(actionListener);
addShortcut(keyStrokes);
}
public ShortcutButton(String text, String[] keyStrokes, ActionListener actionListener) {
super(text);
addActionListener(actionListener);
addShortcut(keyStrokes);
}
public ShortcutButton(String text, String keyStrokes, ActionListener actionListener) {
super(text);
addActionListener(actionListener);
addShortcut(keyStrokes);
}

public void addShortcuts(KeyStroke[] keyStrokes) {
for (KeyStroke keyStroke : keyStrokes) {
addShortcut(keyStroke);
}
}
public void addShortcuts(String[] keyStrokes) {
for (String keyStroke : keyStrokes) {
addShortcut(keyStroke);
}
}
public void addShortcut(String keyStroke) {
addShortcut(KeyStroke.getKeyStroke(keyStroke));
}
public void addShortcut(KeyStroke keyStroke) {
//some code here
}
}

如您所见,ShortcutButton() 构造函数和 addShortcuts() 函数具有不同的签名,但主体相同。有没有一种漂亮的方法可以缩短这段代码,以免在四个不同的函数中复制粘贴相同的代码?

最佳答案

如果您重新排序参数并使用可变参数,您可以将它们缩减为两个构造函数:

public ShortcutButton(String text, ActionListener actionListener, KeyStroke... keyStrokes) {
super(text);
addActionListener(actionListener);
addShortcuts(keyStrokes);
}
public ShortcutButton(String text, ActionListener actionListener, String... keyStrokes) {
super(text);
addActionListener(actionListener);
addShortcuts(keyStrokes);
}

并且如果您有将 String[] 转换为 KeyStroke[] 的方法,则可以进一步缩短代码:

public ShortcutButton(String text, ActionListener actionListener, KeyStroke... keyStrokes) {
super(text);
addActionListener(actionListener);
addShortcuts(keyStrokes);
}
public ShortcutButton(String text, ActionListener actionListener, String... keyStrokes) {
this(text,actionListener,getShortCuts(keyStrokes));
}

关于java - 具有不同签名但相同主体的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53761568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com