开发Web系统,使用Scriptcase,访问www.phpscriptcase.com
代码下载地址:http://www.zuidaima.com/share/1852345677564928.htm
package com.zuidaima.swing; import java.awt.*; import javax.swing.*; public class SinRun extends JFrame implements Runnable { static int i = 0; static int j = 250; static double x = 0; static double v = 10;// 速度 static double w = 2 * Math.PI; static double A = 50;// 振幅 static double t = 0;// 时间 public SinRun() { this.setSize(500, 500); this.setVisible(true); } public void paint(Graphics g) { super.paint(g); g.setColor(Color.black); g.fillOval(i, j + (int) x, 10, 10); } public void run() { while (true) { try { Thread.sleep(100); } catch (InterruptedException e) { // e.printStackTrace(); } i += v; x = A * Math.cos(w * t); t += 0.1; this.repaint(); if (i > 500) i = 0; } } public static void main(String args[]) { new Thread(new SinRun()).start(); } }
开发Web系统,使用Scriptcase,访问www.phpscriptcase.com,古老的榕树,5-wow.com
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。