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

Graphics 類別 (class) 的 drawPolyline() 方法 (method) 用來畫出多點相接的形狀。



修飾子與參數
public abstract void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)


drawPolyline() 沒有回傳值 (return value) ,需要三個參數 (paramenter) ,分別是兩個陣列物件 (object) 與一個整數型態 (type) 常數, xPoints 為圖形 x 座標的集合, yPoints 為圖形 y 座標的集合, nPoints 為點總數。


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

public class GraphicsDemo12 extends Canvas {
    public static void main(String[] args) {
        Frame frame = new Frame("AWTDemo");
        frame.addWindowListener(new AdapterDemo());
        frame.setSize(200, 220);
        
        GraphicsDemo12 canvas = new GraphicsDemo12();
        frame.add(canvas, BorderLayout.CENTER);
        
        frame.setVisible(true);
    }
    
    public void paint(Graphics g) {
        int x[] = {20, 56, 100, 150, 120, 87, 30};
        int y[] = {25, 40, 80, 110, 140, 90, 60};
        
        g.drawPolyline(x, y, 7);
    }    
}

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

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


此例在 paint() 方法中畫圖,先建立兩個座標陣列,然後呼叫 Graphics 的 drawPolyline() 畫出多點相接的形狀
public void paint(Graphics g) {
    int x[] = {20, 56, 100, 150, 120, 87, 30};
    int y[] = {25, 40, 80, 110, 140, 90, 60};
        
    g.drawPolyline(x, y, 7);
}


編譯後執行,結果如下



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


您可以繼續參考
繪圖


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


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

沒有留言: