Page 1 of 1
What is a good website or book for beginners to learn Java?
Posted: Wed Jan 21, 2009 10:28 am
by froggyboy604
Can anyone recommend me any websites, books, videos, etc for learning Java?
Previous programming Experience: Introductory Visual Basic 2005
Posted: Wed Jan 21, 2009 9:31 pm
by SetoTK
Why you would want to learn Java is beyond me.
But i would say you couldn't go wrong with O'Reilly books there pretty reliable in being upto date.
Java as far as i know is not a very well documented language and is not something i have had any inclination to learn.
Posted: Thu Jan 22, 2009 12:48 pm
by froggyboy604
Thanks, I check out those books.
The school put me in the class. I don't like how it is case sensative and require users to use so many symbols like {} {} () , etc.
Posted: Fri Jan 23, 2009 7:30 am
by SetoTK
Yea thats for linux based systems i beleive as they are very particular about that.
it's a hard language to learn, a very under used language (to my knowledge) as well as being very heavy toboot
Posted: Fri Jan 23, 2009 10:45 am
by froggyboy604
It is kind of ridiculous how much code you have to write just print out a single line of text that says "Hello World" plus the semi colons and curly braces can get annoying.
class myfirstjavaprog
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}
Posted: Fri Jan 23, 2009 4:18 pm
by SetoTK
Aye, why i like web languages,
for php for example
<?php
echo "Hello Planet";
?>
or the long way
<?php
$hw = "Hello Planet";
echo $hw;
?>
of course there are a couple other much longer ways but for the purpose of this demonstration they do not apply.