Hi im am learning c++ and im getting to composition, this, and operator overloading and its starting to get really hard and complicated and im just wandering if when you were learning c++ if you started having problems and getting stuck and how did you get through it
by bible i meant bajarne stroustrop's the c++ programming language special edition. and now to get down to buisness: BHXSpecter... we can negotiate rate later, but fair warning... i only program in brainf***, LOLCODE, and html
When I get stuck in processing the huge amount of information presented in a book, I just take a break for a day in order to let the info sink in. Then, when I come back to it the next day it is easier to understand.
@Wahab Ali:
there's nothing to be suggested actually, all i can say is pay attention on pointers:
- a bad pointer is a nasty bug that's hard to find.
- pointer arithmetic requires less processing, that gives a boost in performance.
- dynamic allocation is almost built up on pointers.
- finally , pointers to class types are really important and polymorphism implies an understanding of pointers.