修飾子與參數
public void setMenuBar(MenuBar mb)
setMenuBar() 沒有回傳值 (return value) ,需要一個 MenuBar 型態 (type) 的物件 (object) 當參數 (paramenter) 。
舉例如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import java.awt.*; import java.awt.event.*; public class MenuBarDemo2 { Frame frame; Menu menu1; MenuBar menubar; public static void main(String[] args) { new MenuBarDemo2(); } public MenuBarDemo2() { frame = new Frame( "AWTDemo" ); frame.addWindowListener( new AdapterDemo()); frame.setLayout( new FlowLayout()); frame.setSize( 320 , 200 ); menu1 = new Menu( "menu" ); menu1.add( "one" ); menu1.add( "two" ); menu1.add( "three" ); menu1.add( "four" ); menubar = new MenuBar(); menubar.add(menu1); frame.setMenuBar(menubar); frame.setVisible( true ); System.out.println( "getsetMenuBar: " + frame.getMenuBar()); } } class AdapterDemo extends WindowAdapter { public void windowClosing(WindowEvent e) { System.exit( 0 ); } } /* 《程式語言教學誌》的範例程式 檔名:MenuBarDemo2.java 功能:示範 Java 程式 作者:張凱慶 時間:西元 2012 年 3 月 */ |
此例先建立選單,並將選單加入選單列之中
19 20 21 22 23 24 25 26 | menu1 = new Menu( "menu" ); menu1.add( "one" ); menu1.add( "two" ); menu1.add( "three" ); menu1.add( "four" ); menubar = new MenuBar(); menubar.add(menu1); |
然後呼叫 Frame 的 setMenuBar() ,設定 frame 的選單列
28 29 | frame.setMenuBar(menubar); frame.setVisible( true ); |
最後在命令列呼叫 Frame 的 getMenuBar() ,印出選單列物件
31 | System.out.println( "getsetMenuBar: " + frame.getMenuBar()); |
編譯後執行,結果如下

中英文術語對照 | |
---|---|
類別 | class |
方法 | method |
回傳值 | return value |
型態 | type |
物件 | object |
參數 | parameter |
您可以繼續參考
AWT 元件
相關目錄
Java API 分類導覽
Java 教材
首頁
參考資料
http://docs.oracle.com/javase/6/docs/api/java/awt/Frame.html
沒有留言:
張貼留言