Which casting technique is better for doing casting from upper class to lower class in C++
- by Solitaire
Hi all,
i want to cast from upper class pointer to lower class i.e from the base class pointer to derived class pointer.
Should i use "Dynamic_cast" or "reinterpret_cast"? please advice me