Java API 分類導覽 - java.awt.Graphics drawChars()

Graphics 類別 (class) 的 drawChars() 方法 (method) 用來畫出字元陣列。



修飾子與參數
public void drawChars(char[] data, int offset, int length, int x, int y)


drawChars() 沒有回傳值 (return value) ,需要一個 char 型態 (type) 的陣列物件 (object) 與四個整數參數 (paramenter) , data 為所要印出的 char 陣列, offset 為位移量, length 為陣列長度, x 為起始 x 座標, y 為起始 y 座標。


舉例如下
import java.awt.*;
import java.awt.event.*;

public class GraphicsDemo07 extends Canvas {
    public static void main(String[] args) {
        Frame frame = new Frame("AWTDemo");
        frame.addWindowListener(new AdapterDemo());
        frame.setSize(200, 220);
        
        GraphicsDemo07 canvas = new GraphicsDemo07();
        frame.add(canvas, BorderLayout.CENTER);
        
        frame.setVisible(true);
    }
    
    public void paint(Graphics g) {
        char[] d = {'s', 'p', 'o', 'o', 'n'};
        g.drawChars(d, 0, 5, 20, 20);
    }    
}

class AdapterDemo extends WindowAdapter {
    public void windowClosing(WindowEvent e) {
        System.exit(0);
    }
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:GraphicsDemo07.java
    功能:示範 Java 程式 
    作者:張凱慶
    時間:西元 2012 年 3 月 */


此例在 paint() 方法中畫圖,先建立一個字元陣列,然後呼叫 Graphics 的 drawChars() 印出這個陣列
public void paint(Graphics g) {
    char[] d = {'s', 'p', 'o', 'o', 'n'};
    g.drawChars(d, 0, 5, 20, 20);
}


編譯後執行,結果如下



中英文術語對照
類別class
方法method
回傳值return value
型態type
物件object
參數parameter


您可以繼續參考
繪圖


相關目錄
Java API 分類導覽
Java 教材
首頁


參考資料
http://docs.oracle.com/javase/6/docs/api/java/awt/Graphics.html

沒有留言: