Vous êtes sur la page 1sur 4

/*

File: CountDown.java Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code. History: Date 11Jun1998 Who dl What Create public version

*/

package EDU.oswego.cs.dl.util.concurrent; /** * A CountDown can serve as a simple one-shot barrier. * A Countdown is initialized * with a given count value. Each release decrements the count. * All acquires block until the count reaches zero. Upon reaching * zero all current acquires are unblocked and all * subsequent acquires pass without blocking. This is a one-shot * phenomenon -- the count cannot be reset. * If you need a version that resets the count, consider * using a Barrier. * <p> * <b>Sample usage.</b> Here are a set of classes in which * a group of worker threads use a countdown to * notify a driver when all threads are complete. * <pre> * class Worker implements Runnable { * private final CountDown done; * Worker(CountDown d) { done = d; } * public void run() { * doWork(); * done.release(); * } * } * * class Driver { // ... * void main() { * CountDown done = new CountDown(N); * for (int i = 0; i < N; ++i) * new Thread(new Worker(done)).start(); * doSomethingElse(); * done.acquire(); // wait for all to finish * } * } * </pre> * * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/in tro.html"> Introduction to this package. </a>] * **/ public class CountDown implements Sync {

protected final int initialCount_; protected int count_; /** Create a new CountDown with given count value **/ public CountDown(int count) { count_ = initialCount_ = count; } /* This could use double-check, but doesn't out of concern for surprising effects on user programs stemming from lack of memory barriers with lack of synch.

*/ public void acquire() throws InterruptedException { if (Thread.interrupted()) throw new InterruptedException(); synchronized(this) { while (count_ > 0) wait(); } } public boolean attempt(long msecs) throws InterruptedException { if (Thread.interrupted()) throw new InterruptedException(); synchronized(this) { if (count_ <= 0) return true; else if (msecs <= 0) return false; else { long waitTime = msecs; long start = System.currentTimeMillis(); for (;;) { wait(waitTime); if (count_ <= 0) return true; else { waitTime = msecs - (System.currentTimeMillis() - start); if (waitTime <= 0) return false; } } } } } /** * Decrement the count. * After the initialCount'th release, all current and future * acquires will pass **/ public synchronized void release() { if (--count_ == 0) notifyAll(); } /** Return the initial count value **/ public int initialCount() { return initialCount_; }

/** * Return the current count value. * This is just a snapshot value, that may change immediately * after returning. **/ public synchronized int currentCount() { return count_; } }

http://www.koders.com/java/fidC345C4AF433277701CE9277A26EFE952DD167A86.as px

private class submitJOption implements ActionListener { int counter=300; public void actionPerformed(ActionEvent event) { Timer clock=new javax.swing.Timer(1000, new ActionListener() { public void actionPerformed(ActionEvent e) { counter--; //update JTextField } } ); clock.start(); } }

http://www.dreamincode.net/forums/topic/38036-countdown-timer-in-a-java-guiapplication/

Source code Change the date that is bold to your own special date to get your own customized date countdown. <script type="text/javascript"> today = new Date();

BigDay = new Date("December 25, 2020"); msPerDay = 24 * 60 * 60 * 1000 ; timeLeft = (BigDay.getTime() - today.getTime()); e_daysLeft = timeLeft / msPerDay; daysLeft = Math.floor(e_daysLeft); e_hrsLeft = (e_daysLeft - daysLeft)*24; hrsLeft = Math.floor(e_hrsLeft); minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60); document.write("There are only<BR> <H4>" + daysLeft + " days " + hrsLeft +" hours and " + minsLeft + " minutes left </H4> Until December 25th 2020<P>"); </script> http://www.computerhope.com/j6.htm

Vous aimerez peut-être aussi