修飾子與參數
public Dimension getSize()
getSize() 的回傳值 (return value) 為 Dimension 型態 (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 | import java.awt.*; import java.awt.event.*; public class setSizeDemo { public static void main(String[] args) { Frame frame = new Frame( "AWTDemo" ); frame.setSize( 640 , 480 ); frame.addWindowListener( new AdapterDemo()); Button button1 = new Button( "b1" ); Button button2 = new Button( "b2" ); Button button3 = new Button( "b3" ); Button button4 = new Button( "b4" ); Button button5 = new Button( "b5" ); frame.setLayout( new FlowLayout()); frame.add(button1); frame.add(button2); frame.add(button3); frame.add(button4); frame.add(button5); Dimension r = frame.getSize(); System.out.println( "width: " + r.width); System.out.println( "height: " + r.height); frame.setVisible( true ); } } class AdapterDemo extends WindowAdapter { public void windowClosing(WindowEvent e) { System.exit( 0 ); } } /* 《程式語言教學誌》的範例程式 檔名:setSizeDemo.java 功能:示範 Java 程式 作者:張凱慶 時間:西元 2012 年 3 月 */ |
此例先呼叫 Component 的 setSize() 方法,將視窗設定為 640×480
7 | frame.setSize( 640 , 480 ); |
然後放五個按鈕後,呼叫 Component 的 getSize() 方法,取得視窗寬高資訊的 Dimension 物件
10 11 12 | Dimension r = frame.getSize(); System.out.println( "width: " + r.width); System.out.println( "height: " + r.height); |
最後在命令列印出 width 與 height ,編譯後執行,結果如下

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