2018年1月12日
摘要: 做上下位机通信的项目,关于发送数据格式的一些转换,记录一下。 一、两个函数 主要用到两个函数: 1. strtol 将数字字符串按照指定格式转换成数字 std::string strInformation = “12”; BYTE data = (BYTE)strtol(strInformation 阅读全文
posted @ 2018-01-12 15:02 南枝 阅读(765) 评论(0) 推荐(0) 编辑
摘要: 一、数组的两个特殊性质 (1)不允许拷贝和赋值 不能将数组的内容拷贝给其他数组作为其初始值,也不能用数组为其他数组赋值。 数组的拷贝可以使用memcpy()函数: int des[5], src[3] memcpy(des, src, sizeof(src)); (2)使用数组是通常将其转化成指针 阅读全文
posted @ 2018-01-12 14:13 南枝 阅读(222) 评论(0) 推荐(0) 编辑