Jano Frank wrote:Try Java certification book by Kathy Sierra. I think the books go to satisfactory details 'why' with examples.
Brian Tkatch wrote:
Jano Frank wrote:Try Java certification book by Kathy Sierra. I think the books go to satisfactory details 'why' with examples.
Do you mean OCA/OCP Java SE 7 Programmer I & II Study Guide? Is there something similar for Java 8?
Jano Frank wrote:
Brian Tkatch wrote:
Jano Frank wrote:Try Java certification book by Kathy Sierra. I think the books go to satisfactory details 'why' with examples.
Do you mean OCA/OCP Java SE 7 Programmer I & II Study Guide? Is there something similar for Java 8?
Yes...I do not think she wrote one for Java 8 yet. Her Java 7 book was published not that long time ago.
If you want to save some money you can buy her Java 6 used book for about $10 and review changes made to Java 7.
I am sure that there are many similar books.
All things are lawful, but not all things are profitable.
Look around. I am sure I paid less than that for my HFJ.Brian Tkatch wrote: . . . [Head First Java] for $15.86. . . .
Campbell Ritchie wrote:
Look around. I am sure I paid less than that for my HFJ.Brian Tkatch wrote: . . . [Head First Java] for $15.86. . . .
Campbell Ritchie wrote:The prices for secondhand copies have gone up; they are charging a lot more than when I bought my copy.
can you give me some examples of practitce?Liutauras Vilda wrote:Don't forget to practise along with the reading, otherwise that "understanding" of theory will disappear pretty quick.
Not sure about the precise balance (in %) of reading and practising, but practising should take the way more time than reading.
Jeffrey Gutierrez wrote:Introduction to Java Programming, Comprehensive Version, 10th Edition - Y Daniel Liang.
I've also gone through java for dummies, murach's series,
And Y Daniel's the best I've read so far.
PROS: they give you problems to solve you might encounter on the job.
It's very up to date.
it has a bottom top approach, not exactly a book on computer organization.
you learn other things, as well as concepts like recirsopm
teaches javafx, javedb, using java on the web
excellent user reviews on several websites.
CONS:
it cost a lot
they teach about exceptions and throws to later on.
This book, like all the others I've read don't really get into javafx until way later.
Brian Tkatch wrote:Also, he puts [] after args, not String, which is technically accurate (the variable is the array, not the type) which gives me more confidence in him.
java.time.PastBedtimeException: Get some sleep and try again tomorrow.
In the Beginning of the Beginning, There was Beginning...Wait What??!!
Brian Tkatch wrote:Also, he puts [] after args, not String, which is technically accurate (the variable is the array, not the type) which gives me more confidence in him.
"Leadership is nature's way of removing morons from the productive flow" - Dogbert
Articles by Winston can be found here
Winston Gutkowski wrote:
Brian Tkatch wrote:Also, he puts [] after args, not String, which is technically accurate (the variable is the array, not the type) which gives me more confidence in him.
And it gives me the exact opposite because it's not accurate, technically or otherwise.
In Java, the type IS the arrray. And if you don't believe me, try:
System.out.println(Object.class.equals(Object[].class));
Winston