Agree. Get any of the "Java™ How To" books edition ≥ 6th. You can get them second-hand for a very reasonable price. But go through the Deitel Website first and see if you can find a sample chapter; many people dislike the Deitel style intensely. I suggest, if there is an "early objects" and "late objects" edition, got for "early".henry deeker wrote: . . . Java How to Program (6th Edition) (How to Program (Deitel))
Disagree. NetBeans and other IDEs have a steep learning curve, so it is awkward to learn Java™ at the same time as the IDE.henry deeker wrote:I am using Netbeans to compile and run. GOOGLE and download for free.
But it isn't Java™.henry deeker wrote: . . . This one for instance taught me a lot in short time, . . .
Good Luck![]()
But it isn't Java™.
using System;
namespace Algebra2
{
public class Algebra
{
public static long Factorial(long x)
{
if (x <= 1)
return 1;
else
return x * Factorial(x - 1);
}
package Accessories;
import javax.swing.JOptionPane;
import Algebra.Factors;
public class Central extends javax.swing.JFrame {
Campbell Ritchie wrote:But it isn't Java™.
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” (Mosher's Law of Software Engineering)
“If debugging is the process of removing bugs, then programming must be the process of putting them in.” (Edsger Dijkstra)
tamil Aarasu wrote:Hi Friend
I need to learn java by self please suggest your opinion
1)for doing practical work in my system what i have to install to my system i got some idea about java but i have got practical knowledge
2)after my installation i need to do some basic sample so that i can get some idea practically please suggest from where can i start
3)which tool ll be preferable (i have jdeveloper installed in my system) ..
4)which ll be the best book for java beginners one of friend suggest me to learn(HEAD FIRST JAVA book) tell me your opinion
help me in learning
Cheers![]()
Aarasu
Tapan Maru
tapanmaru@gmail.com
Souvik
OCJP 6.0
Souvvik Basu wrote: .. if notepad is used and programs compiled/run from the command prompt, all such mistakes will throw errors/warnings, providing a good opportunity to learn.
Does anyone agree?
- Rohit
As I said earlier, can we have a link to that book; I couldn't find it on Amazon.Tapan Maru wrote: . . . The Class of Java book written by Mr. Pravin Jain. . . .
http://plainoldjavaobject.blogspot.in
It is no measure of health to be well adjusted to a profoundly sick society. -Krishnamurti Tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
|