Maneesh Godbole wrote:Please UseOneThreadPerQuestion
If you are at a beginner stage, I would strongly recommend against using any type of IDEs. Start off with using a simple text editor like notepad and progressively move towards an IDE .
-Nev
"It's about choosing your battles, not fighting somebody else's war"
Brad Dwan wrote:
Why? I would think being able to know spot syntax errors, use auto-complete and, the constant javadocs features would be extremely helpful to programming novice. I'm new to Java, but not programming and OOP, and using the IDE has allowed me to progress at a much greater rate then a plain text editor. I could understand the need to learn how to manually compile/build in command prompt and alike, but that's not overly difficult, nor needed these days. Each to their own in my opinion.
Brad Dwan wrote:No offence intended. Why? I would think being able to know spot syntax errors, use auto-complete and, the constant javadocs features would be extremely helpful to programming novice.
I could understand the need to learn how to manually compile/build in command prompt and alike, but that's not overly difficult, nor needed these days.
Moguluri Ravi Kiran wrote:String is immutable , means the String object once created can't be changed , But i have small doubt..
we can do
String s = "aa";
s+="bb";
isn't the original object 's' changed ?
Thanks.
Moguluri Ravi Kiran wrote:String is immutable , means the String object once created can't be changed , But i have small doubt..
we can do
String s = "aa";
s+="bb";
isn't the original object 's' changed ?
Thanks.
There are only two hard things in computer science: cache invalidation, naming things, and off-by-one errors
String s = "aa";
s+="bb";
isn't the original object 's' changed ?
Costs matter. Justice lies in processes not outcomes. Crime is caused by criminals.