Connecting Tech Pros Worldwide Forums | Help | Site Map

Higher Volume?

JB
Guest
 
Posts: n/a
#1: Apr 3 '08
This does not seem to be a very high volume newsgroup. Could someone
point me towards another resource where java newbs can get questions
answered in a timely fashion?
--
Still Playing NWN1? Like retro-gaming? Try my (free, of course) PW:
http://games.groups.yahoo.com/group/LotV

Christian Williamson
Guest
 
Posts: n/a
#2: Apr 3 '08

re: Higher Volume?


JB wrote:
Quote:
This does not seem to be a very high volume newsgroup. Could someone
point me towards another resource where java newbs can get questions
answered in a timely fashion?
What are you saying? Java is losing mindshare? ;-Ask away....
Christian Williamson
Guest
 
Posts: n/a
#3: Apr 3 '08

re: Higher Volume?


JB wrote:
Quote:
This does not seem to be a very high volume newsgroup. Could someone
point me towards another resource where java newbs can get questions
answered in a timely fashion?
If you're looking for great examples for Java, check out these sites:

http://java.sun.com/docs/books/tutor...#ComboBoxDemo2
http://www.java2s.com/
http://mindprod.com/jgloss/jgloss.html
http://www.onjava.com/
http://www.javaranch.com/

Also, I just picked up "Java Phrasebook." It's a compact book for quick,
basic Java code.
http://www.amazon.com/Phrasebook-Dev...7213967&sr=8-1
Joshua Cranmer
Guest
 
Posts: n/a
#4: Apr 3 '08

re: Higher Volume?


JB wrote:
Quote:
This does not seem to be a very high volume newsgroup. Could someone
point me towards another resource where java newbs can get questions
answered in a timely fashion?
news:comp.lang.java.programmer
news:comp.lang.java.help
news:comp.lang.java.gui
news:comp.lang.java.database

etc.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth
Robert Larsen
Guest
 
Posts: n/a
#5: Apr 4 '08

re: Higher Volume?


Christian Williamson wrote:
Quote:
while ( true ) {}
This will probably make your CPU go crazy so do this instead:
while (true) {
try {
Thread.sleep(10000000000);
} catch (Exception e) {
}
}

....that way the CPU won't be held busy doing nothing.
Christian Williamson
Guest
 
Posts: n/a
#6: Apr 4 '08

re: Higher Volume?


Robert Larsen wrote:
Quote:
Christian Williamson wrote:
>
Quote:
> while ( true ) {}
>
This will probably make your CPU go crazy so do this instead:
while (true) {
try {
Thread.sleep(10000000000);
} catch (Exception e) {
}
}
>
...that way the CPU won't be held busy doing nothing.
Yep, good catch.
Closed Thread