久久午夜无码,日日射天天射五月丁香婷婷我来了 ,欧美黑人又长又粗在线视频,午夜天网站

當前位置:首頁 > 前端設計 > 正文

actionlistener是什么 addeventlistener和onclick的區(qū)別

actionlistener是什么 addeventlistener和onclick的區(qū)別

大家好,關于actionlistener是什么很多朋友都還不太明白,今天小編就來為大家分享關于addeventlistener和onclick的區(qū)別的知識,希望對各位有...

大家好,關于actionlistener是什么很多朋友都還不太明白,今天小編就來為大家分享關于addeventlistener和onclick的區(qū)別的知識,希望對各位有所幫助!

簡述什么是多態(tài)

多態(tài)指為不同數(shù)據(jù)類型的實體提供統(tǒng)一的接口。多態(tài)類型可以將自身所支持的操作套用到其它類型的值上。

計算機程序運行時,相同的消息可能會送給多個不同的類別之對象,而系統(tǒng)可依據(jù)對象所屬類別,引發(fā)對應類別的方法,而有不同的行為。簡單來說,所謂多態(tài)意指相同的消息給予不同的對象會引發(fā)不同的動作。

idea判斷一個數(shù)是否為素數(shù)

判斷一個數(shù)是否為素數(shù)的方法如下:1.若該數(shù)小于2,則不是素數(shù)。2.若該數(shù)等于2,則是素數(shù)。3.若該數(shù)能被2整除,則不是素數(shù)。4.從3開始,依次判斷該數(shù)能否被從3到sqrt(n)之間的奇數(shù)整除。4.1若能被某個數(shù)整除,則不是素數(shù)。4.2若不能被任何數(shù)整除,則是素數(shù)。

如何eclipse編寫一個簡單實用的登陸界面

//服務器端代碼

importjava.awt.FlowLayout;

importjava.io.DataInputStream;

importjava.io.DataOutputStream;

importjava.io.IOException;

importjava.net.ServerSocket;

importjava.net.Socket;

importjava.util.ArrayList;

importjava.util.Collection;

importjava.util.Iterator;

importjavax.swing.JFrame;

importjavax.swing.JScrollPane;

importjavax.swing.JTextArea;

publicclassQLServerextendsJFrame{

publicJTextAreajtextarea=null;

publicvoidlanuchFrame(Stringstr){

this.setName(str);

init();

}

privatevoidinit(){

setLayout(newFlowLayout());

jtextarea=newJTextArea(20,17);

jtextarea.setLineWrap(true);

jtextarea.setEditable(false);

this.getContentPane().add(newJScrollPane(jtextarea));

setVisible(true);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setSize(200,400);

setLocationRelativeTo(null);

setResizable(false);

}

ServerSocketserver=null;

CollectioncClients=newArrayList<ClientConn>();//加個泛型

publicvoidstartServer()throwsIOException{

while(true){

Sockets=server.accept();

cClients.add(newClientConn(s));

jtextarea.append("newclientlogin"+s.getInetAddress()+":"+s.getPort()+"\n");

}

}

publicQLServer(intport,Stringstr)throwsIOException{

server=newServerSocket(port);

lanuchFrame(str);

}

classClientConnimplementsRunnable

{

Sockets=null;

publicClientConn(Sockets)

{

this.s=s;

(newThread(this)).start();

}

publicvoidsend(Stringstr)throwsIOException

{

DataOutputStreamdos=newDataOutputStream(s.getOutputStream());

dos.writeUTF(str);

}

publicvoiddispose()//客戶端下線

{

try{

if(s!=null)s.close();

cClients.remove(this);

jtextarea.append("Aclientout!\n");

jtextarea.append("clientcount:"+cClients.size()+"\n\n");

}

catch(Exceptione)

{

e.printStackTrace();

}

}

publicvoidrun()

{

try{

DataInputStreamdis=newDataInputStream(s.getInputStream());

Stringstr=dis.readUTF();

while(str!=null&&str.length()!=0)

{

System.out.println(str);

for(Iteratorit=cClients.iterator();it.hasNext();)

{

ClientConncc=(ClientConn)it.next();

if(this!=cc)

{

cc.send(str+""+s.getInetAddress().getHostName());

}

}

str=dis.readUTF();//少了這句話會無限輸出

//send(str);

}

this.dispose();

}

catch(Exceptione)

{

this.dispose();

}

}

}

publicstaticvoidmain(String[]args){

try{

QLServerqlserver=newQLServer(8888,"QLServer");

qlserver.startServer();

}catch(IOExceptione){

e.printStackTrace();

}

}

}importjava.awt.FlowLayout;

importjava.awt.event.ActionEvent;

importjava.awt.event.ActionListener;

importjava.io.BufferedReader;

importjava.io.DataInputStream;

importjava.io.DataOutputStream;

importjava.io.IOException;

importjava.io.InputStreamReader;

importjava.net.InetAddress;

importjava.net.Socket;

importjavax.swing.JButton;

importjavax.swing.JFrame;

importjavax.swing.JScrollPane;

importjavax.swing.JTextArea;

//客戶端代碼

publicclassQLClientextendsJFrameimplementsActionListener{

publicJTextAreajtextarea1=null;

publicJTextAreajtextarea2=null;

publicJButtonbutton=null;

Sockets=null;

publicvoidlaunchFrame(Stringstr){

this.setName(str);

init();

}

publicQLClient(Stringstr)throwsIOException{

launchFrame(str);

s=newSocket("127.0.0.1",8888);//哪臺電腦做服務器,IP地址改成那臺機子的IP

(newThread(newServeConn())).start();

}

privatevoidinit(){

setLayout(newFlowLayout());

jtextarea1=newJTextArea(17,16);

jtextarea2=newJTextArea(4,16);

jtextarea1.setLineWrap(true);

jtextarea1.setEditable(false);

jtextarea2.setLineWrap(true);

button=newJButton("發(fā)送");

button.addActionListener(this);//綁定button事件

this.getContentPane().add(newJScrollPane(jtextarea1));

this.getContentPane().add(newJScrollPane(jtextarea2));

add(button);

setVisible(true);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setSize(200,470);

setLocationRelativeTo(null);

setResizable(false);

}

publicvoidsend(Stringstr)throwsIOException{

DataOutputStreamdos=newDataOutputStream(s.getOutputStream());

dos.writeUTF(str);

}

publicvoidactionPerformed(ActionEvente){

if(e.getSource()==button){

StringsendStr=jtextarea2.getText();

if(sendStr.trim().length()==0){

return;

}

try{

this.send(sendStr);

jtextarea2.setText("");

InetAddressa;

a=InetAddress.getLocalHost();

Stringhostname=a.getHostName();

jtextarea1.append(sendStr+"("+hostname+")"+"\n");

}catch(IOExceptione1){

//TODOAuto-generatedcatchblock

e1.printStackTrace();

}

}

}

classServeConnimplementsRunnable{

publicvoidrun(){

if(s==null)return;

try{

DataInputStreamdis=newDataInputStream(s.getInputStream());

Stringstr=dis.readUTF();

while(str!=null&&str.length()!=0)

{

//System.out.println(str);

QLClient.this.jtextarea1.append(str+"\n");//內(nèi)部類用外類中的變量或方法加外類名

str=dis.readUTF();

}

}

catch(Exceptione)

{

e.printStackTrace();

}

}

}

//main主函數(shù)入口

publicstaticvoidmain(String[]args)throwsIOException{

BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in));

QLClientqlclient=newQLClient("QLClient");

Stringstr=br.readLine();

while(str!=null&&str.length()!=0){

qlclient.send(str);

str=br.readLine();//防止死循環(huán)

}

qlclient.s.close();

}

}

java中監(jiān)聽事件怎么設置

一.使用內(nèi)部類,一個個設置Button然后創(chuàng)建一個內(nèi)部類,用ActionPerformed來實現(xiàn)按鈕事件內(nèi)容;

二.使用lambda表達式,但是這個方法比較繁瑣,需要創(chuàng)建一個內(nèi)部類,其實有更簡單的方法,比如使用lambda表達式,而不需要創(chuàng)建內(nèi)部類,我們可以把創(chuàng)建按鈕和響應的部分放到一個方法里面;

三.使用匿名對象,當然使用lambda表達式肯定不是非用不可的,以前的方法是使用匿名對象,也是可以的;

四.自身框架做事件源容器,其實可以直接用JFrame本身做事件源容器,使ButtonFrame支持ActionListener接口,需要把按鈕定義在屬性中,然后在構造函數(shù)中添加的監(jiān)聽器中直接使用this像這樣:greenButton.addActionListener(this);然后在自己類中實現(xiàn)ActionPerformed方法,使用Objectsource=e.getSource();獲取到事件的更新源,然后用判斷語句來判斷是哪個按鈕的事件依次執(zhí)行事件操作;

五.使用EventHandler指定事件監(jiān)聽器,使用這樣的方法EventHandler.create(ActionListener.class,frame,"loadData")創(chuàng)造一個ActionListener,這種方法用lambda表達式就等同于event->frame.localData();

關于actionlistener是什么和addeventlistener和onclick的區(qū)別的介紹到此就結束了,不知道你從中找到你需要的信息了嗎 ?如果你還想了解更多這方面的信息,記得收藏關注本站。

亚洲日韩精品综合在线一区二区| 亚洲一本视频| 欧美成人精品一区二区男人看| 无码中出人妻视频| 国产精品久久久久久久久亚洲美女| 亚洲AV网址| 操美女夜夜操| 日韩欧美黄色网址| 香蕉久久免费一区二区三区| 8x日韩久久综合| 国产精品青草久久久久福利99 | 99久久精品囯产免费| 亚洲国产老鸭窝一区二区三区| 国产伦一区二区三区四五区| 日日日热热热人人人| 亚欧美在线观看| 亚洲中文字幕日本道| 中文字幕国产在线观看| 欧美在线播放一区二区| 中文无码精品一区二区三区久久 | 国产一卡二级韩高潮| 日本丰满妇人成熟免费中文字幕| 久久久国产成人一区二区| 色吧综合在线| 青青草综合久久| 原创国产传媒精品在线免费观看| 77777在线观看| 日本边添边摸边做边爱喷水| 色悠久久久久久久综合网| 国产传媒免费| 日插AV| 熟女三区四区| ww亚洲综合| 极品粉嫩小泬白浆20PA片| 久久久久久久偷看| 亚洲中文字幕无码一区夏载| 一区二区三区国产欧美| 啪啪网站有哪些| 久久亚洲老女人| 99这里只有精品66视频| 国产精品视频第一页|