Chuckun Posted May 3, 2011 Share Posted May 3, 2011 Corey do some java tutorials online.. I've never learned anything from a course.. Best way is to play with languages at home.. You'll catch up. Quote Link to comment Share on other sites More sharing options...
rolf Posted May 4, 2011 Share Posted May 4, 2011 Well, don't forget that if you learn things yourself, you might learn it "wrong". For example I learned C prior to C++. So instead of using references for function calls, I still use pointers (which works, but aren't that good). I make all variables public such that I don't need getters and setters (which is bad, sometimes you only need getters). I'm learning to name my variables correctly and use the power of the initial constructor [[ class1::class1(int a) : m_a(a) {} ]] instead of [[ class1::class1(int a) { this->a = a } ]]. (which makes it easier for others to understand). Don't think that if you learn everything yourself, you do it without making errors. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.