Good precautions (practices) to start C++ programming -
i'm starting c++ programming in first job. i'm cs student , have learn programming in java. advice tell me watch out don't cause trouble in new job?
have advice or references appreciated.
(example: know c++ more have memory problem java)
thank much!
maybe know this, 1 common mistake folks used java , learning c++:
don't use new
unless have (and don't really have to). in cases want create object, should create "on stack", classtype obj;
.
Comments
Post a Comment