java四種方法事件監(jiān)聽(tīng)(匿名類(lèi),外部類(lèi),內(nèi)部類(lèi),自身)_第1頁(yè)
java四種方法事件監(jiān)聽(tīng)(匿名類(lèi),外部類(lèi),內(nèi)部類(lèi),自身)_第2頁(yè)
java四種方法事件監(jiān)聽(tīng)(匿名類(lèi),外部類(lèi),內(nèi)部類(lèi),自身)_第3頁(yè)
java四種方法事件監(jiān)聽(tīng)(匿名類(lèi),外部類(lèi),內(nèi)部類(lèi),自身)_第4頁(yè)
java四種方法事件監(jiān)聽(tīng)(匿名類(lèi),外部類(lèi),內(nèi)部類(lèi),自身)_第5頁(yè)
已閱讀5頁(yè),還剩1頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、JAVA四種方法實(shí)現(xiàn)事件監(jiān)聽(tīng)1.外部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListenerlextendsJFrameJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener1()this.setTitle(外部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng)”);this.setBo

2、unds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)面板”);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);pane

3、l.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newColorEvent(card1,pane1);button2.addActionListener(newColorEvent(card1,pane1);publicst

4、aticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener1();classColorEventimplementsActionListenerCardLayoutcard1=newCardLayout();JPanelpane1=newJPanel();ColorEvent(CardLayoutcard1,JPanelpane1)this.card1=card1;this.pane1=pane1;OverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generat

5、edmethodstubif(e.getActionCommand().equals(紅色)/getActionCommand()返回與此動(dòng)作相關(guān)的命令字符串card1.show(pane1,紅色”);elseif(e.getActionCommand().equals(綠色)card1.show(pane1,綠色”);2.內(nèi)部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener2extendsJFrameJButtonbutton1,button2;JPanelpane1

6、,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener2()this.setTitle(內(nèi)部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng));this.setBounds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)

7、面板”);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);thi

8、s.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newColorEvent();button2.addActionListener(newColorEvent();classColorEventimplementsActionListenerOverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generatedmethodstubif(e.getSource()=button1)/返回發(fā)生事件的對(duì)象。card1.show(pane1,紅色);elseif(e.get

9、Source()=button2)card1.show(pane1,綠色);publicstaticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener2();3.自身類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener3extendsJFrameimplementsActionListenerJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayout

10、card1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener3()this.setTitle(自身類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng)”);this.setBounds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)面板”);p1.setBackground(

11、Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayo

12、ut.SOUTH);button1.addActionListener(this);button2.addActionListener(this);OverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generatedmethodstubif(e.getActionCommand().equals(紅色)/getActionCommand()返回與此動(dòng)作相關(guān)的命令字符串card1.show(pane1,紅色);elseif(e.getActionCommand().equals(綠色)card1.show(pane1,綠色);pub

13、licstaticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener3();4.匿名類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener4extendsJFrameJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,

14、容器則充當(dāng)卡片的堆棧*/Listener4()this.setTitle(匿名類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng));this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setBounds(200,200,300,200);this.setVisible(true);init();publicvoidinit()p1=newJPanel();pl.add(newJLabel(第一個(gè)面板);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(

15、Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newActionListener()OverridepublicvoidactionPerformed(ActionEventarg0)/TODOAuto-generatedmethodstubcard1.

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論