摘要:
const_cast static_cast dynamic_cast reinterpret_castC 与 C++ 类型转换区别:1. C风格类型转换过于粗鲁,能允许你在任何类型之间进行转换。2.C风格的类型转换在程序语句中难以识别。在语法上类型转换由圆括号和标识符组成,而这些可以用在C++中的任何地方。C++风格的类型转换提供了4种类型转换操作符来应对不同场合的应用。 const_cast,字面上理解就是去const属性。 static_cast,命名上理解是静态类型转换。如int转换成char。 dynamic_cast,命名上理解是动态类型转换。...
阅读全文
posted @ 2014-03-26 16:13
舍得0215
阅读(340)
推荐(0)
编辑
摘要:
Refer: C++ Primer Four Edition7.6. Inline Functions7.6. 内联函数Recall the function we wrote on page 248 that returned a reference to the shorter of its two string parameters:回顾在第 7.3.2 节编写的那个返回两个 string 形参中较短的字符串的函数: // find longer of two strings const string &shorterString(const string &s1, co
阅读全文
posted @ 2014-03-26 16:13
舍得0215
阅读(409)
推荐(0)
编辑
摘要:
一、名词解释1.GPS 即全球定位系统(Global Positioning System)。简单地说,这是一个由覆盖全球的24颗卫星组成的卫星系统。这个系统可以保证在任意时刻,地球上任意一点都可以同时观测到4颗卫星,以保证卫星可以采集到该观测点的经纬度和高度,以便实现导航、定位、授时等功能。这项技...
阅读全文
posted @ 2014-03-26 16:04
舍得0215
阅读(3214)
推荐(0)
编辑