It looks like there is a safe_cast in the visual c++, which looks similar to dynamic_cast.
I am wondering if safe_cast is in the standard c++?
safe_cast is used in C++/CLI. There is no such standard construction in C++.
safe_cast is not standard c++ type casting. Only 4 casting operators available
1.dynamic_cast <new_type> (expression)
2.reinterpret_cast <new_type> (expression)
3.static_cast <new_type> (expression)
4.const_cast <new_type> (expression)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With