记性总是不太好,容易忘事,一线线是由两点组成的,启点和终点,所有在drawLine方法中有四个参数来控制两点,参数如下:
/**
* Draws a line, using the current color, between the points
* <code>(x1, y1)</code> and <code>(x2, y2)</code>
* in this graphics context's coordinate system.
* @param x1 the first point's <i>x</i> coordinate.
* @param y1 the first point's <i>y</i> coordinate.
* @param x2 the second point's <i>x</i> coordinate.
* @param y2 the second point's <i>y</i> coordinate.
*/
public abstract void drawLine(int x1, int y1, int x2, int y2);
x1,y1,x2,y2代表的是啥??时间久了特容易忘记。。做了个图片容易记住:
在通过几个示例说明下:
1.绘制一条横线:
graphics.drawLine(0, 0, 125, 0)
2.绘制一条竖线:
graphics.drawLine(0, 0, 0, 125);
3.绘制一条斜线:
graphics.drawLine(0, 0, 250, 300);