修飾子與參數
public Font getFont()
getFont() 的回傳值 (return value) 為 Font 型態 (type) 的字型物件 (object) ,不需要參數 (paramenter) 。
舉例如下
import java.awt.*; import java.awt.event.*; public class getFontDemo { public static void main(String[] args) { Frame frame = new Frame("AWTDemo"); frame.addWindowListener(new AdapterDemo()); Button a = new Button("abc"); a.setFont(new Font("monospaced", Font.BOLD|Font.ITALIC , 16)); Font b = a.getFont(); System.out.println(b.toString()); frame.setLayout(new FlowLayout()); frame.add(a); frame.pack(); frame.setVisible(true); } } class AdapterDemo extends WindowAdapter { public void windowClosing(WindowEvent e) { System.exit(0); } } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:getFontDemo.java 功能:示範 Java 程式 作者:張凱慶 時間:西元 2012 年 3 月 */
此例先建立一個 Button 按鈕
Button a = new Button("abc");
然後利用 Component 的 setFont() 方法設定按鈕的字型
a.setFont(new Font("monospaced", Font.BOLD|Font.ITALIC , 16));
接著利用 Component 的 getFont() 方法取得該按鈕的字型物件
Font b = a.getFont();
最後在命令列印出該字型物件的字串形式
System.out.println(b.toString());
編譯後執行,結果如下
中英文術語對照 | |
---|---|
類別 | class |
方法 | method |
回傳值 | return value |
型態 | type |
物件 | object |
參數 | parameter |
您可以繼續參考
AWT 元件
相關目錄
Java API 分類導覽
Java 教材
首頁
參考資料
http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html
沒有留言:
張貼留言