Status
Not open for further replies.

shattered space

Distinguished
Dec 18, 2010
26
0
18,580
OK. So I've been watching a series of tutorials to teach myself Java. These tutorials are here. http://www.youtube.com/user/thenewboston#p/c/FE2CE09D83EE3E28/0/Hl-zzrqQoSE , that is the first video of the basic series. However after watching these and getting half-way through the intermediate series, I've found that this guy doesn't do clean coding at all. I just want a very much more reliable source that will teach me, as in tell me what each function, method, utility, etc. does and when to use it. I would prefer this be in video format but I'm not against reading so that would also be helpful. Any help in finding a good series to improve my Java programming would be very much appreciated.
 
Solution
Really what you want to do is look at the Java certification notes if you're not learning from an approved educational authority. The stuff that there is pretty anal about knowledge of the APIs for the examination, so if you're after the guts of when to use things, reading that will give you more information you'll need day to day.

As for writing style you really want to look at Java best practices. A swift google search will give you a raft of websites to choose from. This site is pretty good but is probably far too specific if you're just starting out. Understanding Object Orientated design is essential if you haven't already grasped it.

If you are serious about learning Java you will need to do more than just watching...

Rusting In Peace

Distinguished
Jul 2, 2009
312
0
19,060
Really what you want to do is look at the Java certification notes if you're not learning from an approved educational authority. The stuff that there is pretty anal about knowledge of the APIs for the examination, so if you're after the guts of when to use things, reading that will give you more information you'll need day to day.

As for writing style you really want to look at Java best practices. A swift google search will give you a raft of websites to choose from. This site is pretty good but is probably far too specific if you're just starting out. Understanding Object Orientated design is essential if you haven't already grasped it.

If you are serious about learning Java you will need to do more than just watching videos. You need to get your hands dirty with code. Try examples like Phil has mentioned, tweak them, try writing your own implementations of library functions.

Best of luck!
 
Solution
Status
Not open for further replies.