- The first, creates a class object on the heap, stores the pointer of it in the variable td. You are responsible to destroy the object before the variable goes out of scope.
- The second, creates a class object on the heap, makes a copy on the stack (td), and the looses the pointer resulting in a memory leak. The copy is destroyed automatically, when the variable goes out of scope.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
what the different ?