Computer Science Canada

Delays

Author:  TheFerret [ Fri Oct 01, 2004 9:38 pm ]
Post subject:  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...

Author:  magicman [ Mon Oct 04, 2004 1:08 pm ]
Post subject: 

why dont u use
code:

try
        {
            Thread.sleep (9500);
        }
        catch (InterruptedException e)
        {
            System.out.println (e);
        }

It works for me.

Author:  JayLo [ Thu Oct 07, 2004 7:11 pm ]
Post subject: 

why don't you try blueJ? http://bluej.org

Author:  Hikaru79 [ Mon Nov 08, 2004 12:30 pm ]
Post subject:  Re: Delays

TheFerret wrote:

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 Very Happy

Author:  wtd [ Mon Nov 08, 2004 3:08 pm ]
Post subject:  Re: Delays

Hikaru79 wrote:
TheFerret wrote:

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.


: