C++ 强制类型转换 static_cast(expression)

参考:

http://www.cnblogs.com/ider/archive/2011/07/31/cpp_cast_operator_part4.html

http://baike.baidu.com/link?url=R1QJJ2ALjFDFqFQ_fOswJqOss8oeyod6EPftmiApPXS2VR4ie0bPxYGLihD0Q83WlBZgJyMAjeZ1kCXsKlhJva


##########################################################


将expression表达式强制转换为new_type

注意:static_cast不能转换掉expression的const、volatile、unsigned属性



你可能感兴趣的:(C++)