- 相關(guān)推薦
實(shí)現(xiàn)鼠標(biāo)畫圖的Java程序
用鼠標(biāo)畫圖有很多樂趣和便利之處,那么如何才能實(shí)現(xiàn)鼠標(biāo)畫圖呢?下面YJBYS小編為大家整理了關(guān)于實(shí)現(xiàn)鼠標(biāo)畫圖的Java程序,希望對你有所幫助。
import java.awt.Color;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.util.ArrayList;
import java.util.Iterator;
public class MyMouseAdapter {
public static void main(String[] args) {
new MyFrame5(“drawing”);
class MyFrame5 extends Frame{
ArrayList points=null;
MyFrame5(String s){
super(s);
points=new ArrayList();
setLayout(null);
setBounds(300,300,400,300);
this.setBackground(new Color(204,204,255));
setVisible(true);
this.addMouseListener(new Monitor5());
}
public void paint(Graphics g){
Iterator i=points.iterator();
while(i.hasNext()){
Point p=(Point)i.next();
g.setColor(Color.blue);
g.fillOval(p.x,p.y, 10, 10);
}
}
public void addPoint(Point p){
points.add(p);
}
}
class Monitor5 extends MouseAdapter{ //MouseAdapter實(shí)現(xiàn)了MouseListener接口
public void mousePressed(MouseEvent e){
MyFrame5 f=(MyFrame5)e.getSource();
f.addPoint(new Point(e.getX(),e.getY()));
f.repaint(); //讓Frame強(qiáng)制經(jīng)行重畫
}
}
【實(shí)現(xiàn)鼠標(biāo)畫圖的Java程序】相關(guān)文章:
如何編譯java程序03-05
Java程序開發(fā)與運(yùn)行環(huán)境03-05
Java如何實(shí)現(xiàn)簡單的whois查詢03-16
Java語言的特點(diǎn)和實(shí)現(xiàn)機(jī)制02-27
Java byte[]轉(zhuǎn)int如何實(shí)現(xiàn)03-16
Java動(dòng)態(tài)代理實(shí)現(xiàn)AOP的方法03-16