91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么給按鈕添加監視器

發布時間:2023-04-07 11:42:59 來源:億速云 閱讀:134 作者:iii 欄目:開發技術

這篇“Java怎么給按鈕添加監視器”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java怎么給按鈕添加監視器”文章吧。

第一種:匿名對象

界面代碼

package dragon;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class View3 extends JFrame{
	private JButton submit, cancel;
	public View3() {
		this.init();
		this.setLayout(new FlowLayout());
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setBounds(300,300,250,100);
		this.setVisible(true);
	}
	
	private void init() {
		submit = new JButton("確定");
		cancel = new JButton("取消");
		Box box = Box.createHorizontalBox();
		box.add(submit);
		box.add(Box.createHorizontalStrut(20));
		box.add(cancel);
		
		submit.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				JOptionPane.showMessageDialog(null, "點擊了確定按鈕", "確定", JOptionPane.INFORMATION_MESSAGE);
			}
		});
		
		cancel.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				JOptionPane.showMessageDialog(null, "點擊了取消按鈕", "取消", JOptionPane.CANCEL_OPTION);
			}
		});
		this.add(box);
	}
}

測試代碼

package dragon;public class Test {<!--{cke_protected}{C}%3C!%2D%2D%20%2D%2D%3E-->public static void main(String[] args) {<!--{cke_protected}{C}%3C!%2D%2D%20%2D%2D%3E-->new View3();}}package dragon;

public class Test {
	public static void main(String[] args) {
		new View3();
	}
}

運行截圖:

Java怎么給按鈕添加監視器

Java怎么給按鈕添加監視器

說明:比較常見的一種方式,初學Java的朋友一般都會見到這種方法,但是同時這也是很老的一種方式,不能很好的體現Java代碼的變化。一般并不推薦使用這種方式,但是作為學習Java語法的例子,還是非常不錯的

第二種:實現類

界面代碼

package dragon;

import java.awt.FlowLayout;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;

public class View4 extends JFrame{
	private JButton submit, cancel;
	private SubmitListener submitListener;
	private CancelListener cancelListener;
	
	public View4() {
		this.init();
		this.setLayout(new FlowLayout());
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setBounds(300,300,250,100);
		this.setVisible(true);
	}
	
	private void init() {
		submit = new JButton("確定");
		cancel = new JButton("取消");
		Box box = Box.createHorizontalBox();
		box.add(submit);
		box.add(Box.createHorizontalStrut(20));
		box.add(cancel);
		
		submitListener = new SubmitListener();
		cancelListener = new CancelListener();
		submit.addActionListener(submitListener);
		cancel.addActionListener(cancelListener);
		this.add(box);
	}
}

實現 ActionListener 接口的類

package dragon;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JOptionPane;

public class SubmitListener implements ActionListener {

	@Override
	public void actionPerformed(ActionEvent e) {
		JOptionPane.showMessageDialog(null, "點擊了確定按鈕", "確定", JOptionPane.INFORMATION_MESSAGE);
	}
}

class CancelListener implements ActionListener {
	@Override
	public void actionPerformed(ActionEvent e) {
		JOptionPane.showMessageDialog(null, "點擊了取消按鈕", "取消", JOptionPane.CANCEL_OPTION);
	}
	
}

測試代碼

package dragon;

public class Test {
	public static void main(String[] args) {
		new View4();
	}
}

運行截圖:

Java怎么給按鈕添加監視器

Java怎么給按鈕添加監視器

說明:使用繼承 ActionListener 接口的類,作為監視器,是一種很好的方式。

第三種:實現接口

界面代碼

package dragon;

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class View1 extends JFrame implements ActionListener{
	private JButton submit, cancel;
	public View1() {
		this.init();
		this.setLayout(new FlowLayout());
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setBounds(300,300,250,100);
		this.setVisible(true);
	}
	
	private void init() {
		submit = new JButton("確定");
		cancel = new JButton("取消");
		Box box = Box.createHorizontalBox();
		box.add(submit);
		box.add(Box.createHorizontalStrut(20));
		box.add(cancel);
		
		
		submit.addActionListener(this);
		cancel.addActionListener(this);
		this.add(box);
	}

	@Override
	public void actionPerformed(ActionEvent e) {
		if (e.getSource() == submit) {
			JOptionPane.showMessageDialog(null, "點擊了確定按鈕", "確定", JOptionPane.INFORMATION_MESSAGE);
		}
		if (e.getSource() == cancel) {
			JOptionPane.showMessageDialog(null, "點擊了取消按鈕", "取消", JOptionPane.CANCEL_OPTION);
		}
	}
	 
}

測試代碼

package dragon;

public class Test {
	public static void main(String[] args) {
		new View1();
	}
}

運行截圖

Java怎么給按鈕添加監視器

Java怎么給按鈕添加監視器

說明:這種方式和上面第二種差不多,但是我個人很喜歡這種,主要是少寫了幾個類。這也是一種很好的方式,主要是傳遞參數的方式,我以前對這個 submit.addActionListener(this); 很迷惑,哈哈。

第四種:Lambda 表達式

界面代碼

package dragon;

import java.awt.FlowLayout;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class View extends JFrame{
	private JButton submit, cancel;
	public View() {
		this.init();
		this.setLayout(new FlowLayout());
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setBounds(300,300,250,100);
		this.setVisible(true);
	}
	
	private void init() {
		submit = new JButton("確定");
		cancel = new JButton("取消");
		Box box = Box.createHorizontalBox();
		box.add(submit);
		box.add(Box.createHorizontalStrut(20));
		box.add(cancel);
		
		submit.addActionListener((e)->{
			JOptionPane.showMessageDialog(null, "點擊了確定按鈕", "確定", JOptionPane.INFORMATION_MESSAGE);
		});
		
		cancel.addActionListener((e)->{
			JOptionPane.showMessageDialog(null, "點擊了取消按鈕", "取消", JOptionPane.CANCEL_OPTION);
		});
		this.add(box);
	}
}

測試代碼

package dragon;

public class Test {
	public static void main(String[] args) {
		new View();
	}
}

運行截圖

Java怎么給按鈕添加監視器

Java怎么給按鈕添加監視器

說明:Lambda 表達式 是Java 8 的新特性,主要是簡化了代碼,這個可以理解為對第一種匿名對象方式的簡化,主要是去除了很多的模板代碼,從傳遞對象演進到傳遞行為(因為其它是多余的)。這個我現在比較喜歡使用,使用這種方法,可以少些很多的代碼。當然了,它也是有不足的,使用 Lambda 表達式的前提是這個接口必須是函數式接口(接口中只有一個抽象方法),一般這種接口都會使用一個注解進行修飾:@FunctionalInterface

第五種:注解

界面代碼

package dragon;

import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.lang.reflect.InvocationTargetException;

import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;


public class View5 extends JFrame{
	@ButtonListener(listener=SubmitListener.class)
	private JButton submit;
	
	@ButtonListener(listener=CancelListener.class)
	private JButton cancel;
	
	public View5() {
		this.init();
		this.setLayout(new FlowLayout());
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setBounds(300,300,250,100);
		this.setVisible(true);
	}
	
	private void init() {
		submit = new JButton("確定");
		cancel = new JButton("取消");
		Box box = Box.createHorizontalBox();
		box.add(submit);
		box.add(Box.createHorizontalStrut(20));
		box.add(cancel);
		
		//處理注解的類對象
		ButtonProcess process;
		process = new ButtonProcess();
		try {
			process.addListener(this);
		} catch (Exception e) {
			//直接處理 Exception 異常
			e.printStackTrace();
		}
		
		this.add(box);
	}
}

注解處理類

package dragon;

import java.awt.event.ActionListener;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import javax.swing.JButton;

public class ButtonProcess {
	public void addListener(Object ob) throws IllegalArgumentException, IllegalAccessException, NoSuchMethodException, SecurityException, InstantiationException, InvocationTargetException {
		Class<?> clazz = ob.getClass();
		Field[] fields = clazz.getDeclaredFields();
		for (Field field : fields) {
			//訪問私有的成員變量,必須設置訪問權限
			field.setAccessible(true);
			Object object = field.get(ob);
			//獲取成員變量的注解
			ButtonListener buttonListener = field.getDeclaredAnnotation(ButtonListener.class);
			//如果注解對象不為空(有的成員變量沒有注解,所以該對象為 null),
			//并且 該成員變量所對應的對象的類型是JButton 類型(這里只有一個注解,可以不需要這個判斷,
			//但是從代碼的健壯性角度來說,應該加上,如果有多個注解,必須進行判斷才行)。
			if (buttonListener != null && object != null && object instanceof JButton) {
				//獲取注解的成員變量(必須經過判斷之后才能,獲取成員變量,注解對象可能為 null)
				Class<? extends ActionListener> listener = buttonListener.listener();
				Constructor<?> con = listener.getDeclaredConstructor(new Class[] {});
				ActionListener actionListener = (ActionListener) con.newInstance(new Object[] {});
			//	ActionListener actionListener = listener.newInstance();
				//給按鈕對象添加監視器
				((JButton)object).addActionListener(actionListener);
			}
		}
	}
}

測試代碼

package dragon;

public class Test {
	public static void main(String[] args) {
		new View5();
	}
}

注意:ActionListener actionListener = listener.newInstance(); 這句話被我注釋了,因為在 Java 9中,Class 對象的 newInstance()廢棄了,不再推薦使用了,但是這個ActionListener 是一個接口,接口是沒有構造方法的,但是我使用反射的方式獲取到了,因為接口也是類的一種,可能是含有 私有的構造方法。

運行截圖:

Java怎么給按鈕添加監視器

Java怎么給按鈕添加監視器

說明:這種實現方式,是這里最復雜的,但是不能說它是最差的(不過速度應該是最慢的了,畢竟反射的速度是沒有直接創建對象快的。),上面代碼參考了瘋狂Java講義,但是加了一點我的注釋,但是這是一種新的方式,畢竟我們不能永遠只寫一些很容易就看得懂的代碼,也是需要學習新的知識,這個例子主要是學習如何使用注解的,可以看出來雖然很復雜,但是這也是很有趣的一種方式。

以上就是關于“Java怎么給按鈕添加監視器”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

马公市| 丹江口市| 理塘县| 永登县| 鱼台县| 乃东县| 麟游县| 拜城县| 周至县| 昆明市| 罗江县| 长沙县| 马公市| 永兴县| 金秀| 中方县| 西乌珠穆沁旗| 资溪县| 尼木县| 大余县| 阜康市| 青州市| 凤庆县| 和林格尔县| 嘉黎县| 大理市| 白河县| 乐至县| 乡城县| 吴川市| 三亚市| 神木县| 合江县| 饶平县| 霍山县| 二连浩特市| 集贤县| 工布江达县| 琼结县| 射阳县| 天水市|