我有使用Java Swing创建的接口的java程序。界面包含JButton
。我想将Action
添加到该按钮,以便它应该执行我指定的另一个Java程序。
怎么做?
答案 0 :(得分:0)
试试这个:
public class Sample {
public static void main(String[] args) {
test(1);//fine & output - int
test(1L);//fine & output - long
//test(null); fine & output - Integer
test(12233333333);//error
}
static void test(int a){
System.out.println("int");
}
static void test(Integer a){
System.out.println("Integer");
}
static void test(long a){
System.out.println("long");
}
static void test(Long a){
System.out.println("Long");
}
static void test(List<Integer> a){
System.out.println("List");
}
}