guide me in java |
| |
|
|
|
Regular Coder Posts: 53 Topics: 17
|
|
|
February 01, 2009, 10:28:53 AM
|
|
hello, hello friends am a beginner of java and i want to gain some knowledge on java. could you help me in reffering some books. thanks in advance
|
|
| |
|
|
|
Code Guru Gender:  Posts: 1399 Topics: 85
|
|
|
February 02, 2009, 06:03:55 AM
|
|
|
|
| |
|
|
|
Skilled Coder Real name: Janne
Location: california
Gender: 
Age: 26
Posts: 108 Topics: 1
|
|
|
May 11, 2011, 12:05:10 AM
|
|
head first java and black book just read it......
|
|
| |
|
|
|
Skilled Coder Posts: 125 Topics: 0
|
|
|
May 16, 2011, 02:11:33 AM
|
|
If you want to learn java, you must read the article and some other stuff form, which you can get basic idea regarding JAVA. There is also one best website to learn java called w3school.
|
|
| |
|
|
|
Professional Coder Gender:  Posts: 242 Topics: 3
|
|
|
June 15, 2011, 07:53:15 AM
|
|
where do you want to learn first..? the objective part..? or just head straight to coding..?
|
|
| |
|
|
|
New Poster Posts: 1 Topics: 0
|
|
|
July 11, 2011, 10:31:32 PM
|
|
Hi, if u want to learn java in advance or basic level there are many books available for advance java or for beginner. . . There is also one best website to learn java called w3school. . . .
« Last Edit: July 12, 2011, 10:53:36 PM by Admin »
|
|
| |
|
|
|
Professional Coder Posts: 229 Topics: 7
|
|
|
August 02, 2011, 03:28:54 AM
|
|
For the core java you should use java book by balagurusamy. For some more advance java you can use "The complete reference" book.
|
|
| |
|
|
|
Regular Coder Posts: 73 Topics: 2
|
|
|
August 02, 2011, 07:25:38 AM
|
|
Hi,
Java is an Object Oriented Programming Language. This means that it is easy to program in Java if you can see a computer problem as a real world Object. This enables you to evolve the idea of how to design a Java Program.
In the programming aspect, if you have a considerable knowledge of C++ (which is also an OOP Language), then Java should be a piece of cake. If you are interested in learning Java Programming Language use the link below:
hxxp: download. oracle. com/javase/tutorial/
It is the official Java Tutorial. For getting programming ideas, you need to understand the Object Oriented concept. Hope this helped.
|
|
| |
|
|
|
Professional Coder Posts: 229 Topics: 7
|
|
|
August 04, 2011, 12:48:51 AM
|
|
Java is very easy language to learn just you should understand the basics behind interfaces, packages, api. Java with Mysql is the best combination of front end and back end.
|
|
| |
|
|
|
Regular Coder Posts: 88 Topics: 10
|
|
|
August 04, 2011, 04:12:29 AM
|
|
That's a tremendously broad question. Java is not a difficult language to pick up (the linked tutorial above in s.gurusharan82's answer covers most of the language), although it is very verbose and annoyingly object-centric without being completely object-oriented. (All your code must be in classes, but not all data have properties and methods.) You can just download the Java SDK and you can start writing simple command-line code in minutes.
Java, though, comes in several flavours (Standard, Enterprise and Mobile), and is rarely written to stand alone -- there's usually a platform underlying the code (besides the Java Virtual Machine) and a whole bunch of libraries and their APIs to import and work with. (You could, I suppose, write many of these yourself, but that would increase your effort by orders of magnitude while reducing the reliability and robustness of the final product by the same degree.) To a large degree, Java programming is all about learning what's in the libraries and what the platform (Struts, Eclipse, etc.) does for you.
|
|
| |