
-----------------------------------
TheFerret
Fri Oct 01, 2004 9:38 pm

Delays
-----------------------------------
I'm fairly new to the world of Java but not to programming in general... I am trying to make a delay for a program but I am not sure how, my teacher says it has to do with modules but she is too lazy to teach me, so how do you make a delay... In case you are wondering, I am using Ready Java program...

EDIT: I just found out that Ready IDE will not work on my home computer... Anyone have any good complieres that are free...

-----------------------------------
magicman
Mon Oct 04, 2004 1:08 pm


-----------------------------------
why dont u use 

try
        {
            Thread.sleep (9500);
        }
        catch (InterruptedException e)
        {
            System.out.println (e);
        }

It works for me.

-----------------------------------
JayLo
Thu Oct 07, 2004 7:11 pm


-----------------------------------
why don't you try blueJ? http://bluej.org

-----------------------------------
Hikaru79
Mon Nov 08, 2004 12:30 pm

Re: Delays
-----------------------------------

EDIT: I just found out that Ready IDE will not work on my home computer... Anyone have any good complieres that are free...

By "Compiler" i'll assume you meant "IDE" since there's only one Java compiler (Sun's).

I like Eclipse the most, but NetBeans is great too :D

-----------------------------------
wtd
Mon Nov 08, 2004 3:08 pm

Re: Delays
-----------------------------------

EDIT: I just found out that Ready IDE will not work on my home computer... Anyone have any good complieres that are free...

By "Compiler" i'll assume you meant "IDE" since there's only one Java compiler (Sun's).

Not really.  There's GCJ, a Java-to-MSIL compiler/translator, and a host of others as well.
