Thursday, July 9, 2009

In C++ what is the meaning of static_cast <point>(c)??!?

Any examples:

In C++ what is the meaning of static_cast %26lt;point%26gt;(c)??!?
it's the same as a C-style cast:





point p=(point) c;





point p=static_cast%26lt;point%26gt;c;


No comments:

Post a Comment