這篇文章主要介紹JAVA中->指的是什么意思,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司主營始興網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),始興h5微信小程序搭建,始興網(wǎng)站營銷推廣歡迎始興等地區(qū)企業(yè)咨詢
Java中的集合主要分為四類:1、List列表:有序的,可重復(fù)的;2、Queue隊(duì)列:有序,可重復(fù)的;3、Set集合:不可重復(fù);4、Map映射:無序,鍵唯一,值不唯一。
import javax.swing.*; import java.awt.*; import java.io.File; public class ImageViewer { public static void main(String[] args){ EventQueue.invokeLater(() -> { JFrame frame = new ImageViewerFrame(); frame.setTitle("ImageViewer"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); }); } } class ImageViewerFrame extends JFrame{ private JLabel label; private JFileChooser chooser; private static final int DEFAULT_WIDTH = 300; private static final int DEFAULT_HEIGHT = 400; public ImageViewerFrame(){ setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT); label = new JLabel(); add(label); chooser = new JFileChooser(); chooser.setCurrentDirectory(new File(".")); JMenuBar menuBar = new JMenuBar(); setJMenuBar(menuBar); JMenu menu = new JMenu(); menuBar.add(menu); JMenuItem openItem = new JMenuItem("open"); menu.add(openItem); openItem.addActionListener(Event -> { int result = chooser.showOpenDialog(null); if (result == JFileChooser.APPROVE_OPTION){ String name = chooser.getSelectedFile().getPath(); label.setIcon(new ImageIcon(name)); } }); JMenuItem exitItem = new JMenuItem("exit"); menu.add(exitItem); exitItem.addActionListener(Event -> System.exit(0)); } }
可以看到兩處這樣的代碼
() -> { JFrame frame = new ImageViewerFrame(); frame.setTitle("ImageViewer"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); }
Event -> { int result = chooser.showOpenDialog(null); if (result == JFileChooser.APPROVE_OPTION){ String name = chooser.getSelectedFile().getPath(); label.setIcon(new ImageIcon(name)); }
Java8的lambda表達(dá)式。就是匿名函數(shù)。
上面那一段可以看成如下:
EventQueue.invokeLater(new Runnable() { public void run() { JFrame frame = new ImageViewerFrame(); frame.setTitle("ImageViewer"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } });
下面一段可以看成:
openItem.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { int result = chooser.showOpenDialog(null); if (result == JFileChooser.APPROVE_OPTION){ String name = chooser.getSelectedFile().getPath(); label.setIcon(new ImageIcon(name)); } } });
只不過java自動(dòng)幫你翻譯了一下
以上是“JAVA中->指的是什么意思”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章名稱:JAVA中->指的是什么意思
本文鏈接:http://vcdvsql.cn/article32/pdiosc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、網(wǎng)站策劃、網(wǎng)站改版、網(wǎng)站導(dǎo)航、響應(yīng)式網(wǎng)站、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)