|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在性能方面,在windows平台下,.net网页编程可能是占强项,要是把.net网页编程放在sun开发的操作系统上去运行呢?根本就运行不了,.net网页编程对其它操作系统的支持也很弱,性能也可能比不上java。
importjava.awt.*;
importjava.awt.event.*;
importjava.util.*;
importjavax.swing.event.*;
importjavax.swing.*;
importjavax.swing.Timer;
/**
*<p>Title:时钟</p>
*<p>Description:本实例演示利用图形绘制一个图形时钟</p>
*<p>Copyright:Copyright(c)2003</p>
*<p>Filename:Clock.java</p>
*@version1.0
*/
publicclassClockextendsJFrameimplementsActionListener{
Timertimer;
intx,y,old_X,old_Y,r,x0,y0,w,h,ang;
intsdo,mdo,hdo,old_M,old_H;
TimeZonetz=TimeZone.getTimeZone("JST");
finaldoubleRAD=Math.PI/180.0;
publicstaticvoidmain(String[]args){
Clockcl=newClock();
}
/**
*<br>办法申明:完成ActionListener类必需过载的办法
*<br>输出参数:
*<br>前往范例:
*/
publicvoidactionPerformed(ActionEvente){
timer.restart();
}
/**
*<br>办法申明:机关器,显现窗体,并增加了一个秒表
*<br>输出参数:
*<br>前往范例:
*/
Clock(){
super("Clock");
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setBackground(newColor(0,0,192));
setSize(300,300);
show();
intdelay=1000;
//窗体增加事务监听,监听秒表的触发
ActionListenertaskPerformer=newActionListener(){
publicvoidactionPerformed(ActionEventevt){
repaint();
}
};
newTimer(delay,taskPerformer).start();
}
/**
*<br>办法申明:绘制图形
*<br>输出参数:
*<br>前往范例:
*/
publicvoidpaint(Graphicsg){
Insetsinsets=getInsets();
intL0=(insets.left)/2,T0=(insets.top)/2;
inthh,mm,ss;
Stringst;
h=getSize().height;
//绘制圆形
g.setColor(Color.white);
g.drawOval(L0+30,T0+30,h-60,h-60);
g.drawOval(L0+32,T0+32,h-64,h-64);
r=h/2-30;
x0=30+r-5+L0;
y0=30+r-5-T0;
ang=60;
for(inti=1;i<=12;i++){
x=(int)((r+10)*Math.cos(RAD*ang)+x0);
y=(int)((r+10)*Math.sin(RAD*ang)+y0);
g.drawString(""+i,x,h-y);
ang-=30;
}
x0=30+r+L0;y0=30+r+T0;
//猎取工夫
Calendarnow=Calendar.getInstance();
hh=now.get(Calendar.HOUR_OF_DAY);//小时
mm=now.get(Calendar.MINUTE);//分钟
ss=now.get(Calendar.SECOND);//秒
g.setColor(Color.pink);
g.fillRect(L0,T0,60,28);//添补的矩形
g.setColor(Color.blue);
if(hh<10)st="0"+hh; elsest=""+hh;
if(mm<10)st=st+":0"+mm;elsest=st+":"+mm;
if(ss<10)st=st+":0"+ss;elsest=st+":"+ss;
g.drawString(st,L0,T0+25);
//盘算工夫和图形的干系
sdo=90-ss*6;
mdo=90-mm*6;
hdo=90-hh*30-mm/2;
//擦除秒针
if(old_X>0){
g.setColor(getBackground());
g.drawLine(x0,y0,old_X,(h-old_Y));
}else{
old_M=mdo;
old_H=hdo;
}
//绘制秒针
g.setColor(Color.yellow);
x=(int)((r-8)*Math.cos(RAD*sdo)+x0);
y=(int)((r-8)*Math.sin(RAD*sdo)+y0)-2*T0;
g.drawLine(x0,y0,x,(h-y));
old_X=x;
old_Y=y;
//擦除分针和时针
if(mdo!=old_M){
line(g,old_M,(int)(r*0.7),getBackground());
old_M=mdo;
}
if(hdo!=old_H){
line(g,old_H,(int)(r*0.5),getBackground());
old_H=hdo;
}
//绘制分针
line(g,mdo,(int)(r*0.7),Color.green);
//绘制时针
line(g,hdo,(int)(r*0.5),Color.red);
}//endpaint
/**
*<br>办法申明:绘制线,用于绘制时针和分针
*<br>输出参数:
*<br>前往范例:
*/
publicvoidline(Graphicsg,intt,intn,Colorc){
int[]xp=newint[4];
int[]yp=newint[4];
xp[0]=x0;
yp[0]=y0;
xp[1]= (int)((n-10)*Math.cos(RAD*(t-4))+x0);
yp[1]=h-(int)((n-10)*Math.sin(RAD*(t-4))+y0);
xp[2]= (int)(n *Math.cos(RAD*t )+x0);
yp[2]=h-(int)(n *Math.sin(RAD*t )+y0);
xp[3]= (int)((n-10)*Math.cos(RAD*(t+4))+x0);
yp[3]=h-(int)((n-10)*Math.sin(RAD*(t+4))+y0);
g.setColor(c);
g.fillPolygon(xp,yp,4);
}
}
通过视频学习比传统的大课堂学习更适合成人化的学习规律。有人说大课堂气氛好,学习氛围浓,热闹,可以认识很多人。 |
|