| Java-Corner Let me give some tips about how to start Java Programming.
First and foremost requirement is YOU TRY TO UNDERSTAND THE OBJECT ORIENTED PROGRAMMING CONCEPTS. Unless you do that, you cannot enjoy the taste of Java. For that the best book to date is Thinking in Java, by Bruce Eckel. Read this bulky one like a novel and you will enjoy it.
Once you get the taste of OOP. start with simple programs like HelloWorld, refer to online articles about what each and every word and statement in the program actually means. Compilers
Go to java.sun.com, downloads section and download the latest JDK 5.
That is all you need to develop Java applications.
Practise one or two programs, compile them using command line. Get to know how to compile and run from the command line.
Now go to jcreator.com and download the LE version of the best IDE for beginners - JCreator. Trust me, I have tried tons of IDE's out there and JCreator is the best. I believe it is written in VC++, and it is much faster than many other Java-written-IDE's.
As you get more and more familiar using an IDE, go to eclipse.com and download eclipse, the visual studio for Java developers. Books
The best for beginners is undoubtedly Head First Java. I don't even want to mention about any other book, which might raise its level because it is mentioned along with the Head First Java. Online Help
There are lots of articles online. There is a Sun tutorial, but it's for those who can understand Java well, not for those who want to understand Java well.
Register to some good Java news boards and visit it as much as possible.
Take some data structure programs written in C++ and implement the same in Java. You will learn a lot. |