Try to see which cast is faster (not necessary better): new c++ case or old fashion C style cast. Any ideas?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There should be no difference at all if you compare
int()to equivalent functionality ofstatic_cast<int>().Using VC2008:
Obviously, it is 100% the same!