
c++
文章平均质量分 86
码农客栈_V13427279549
收人钱财,替人消灾!需要外包程序随时欢迎call我!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cpp 强制转换
cpp 强制转换原创 2024-07-17 09:02:35 · 1371 阅读 · 0 评论 -
cpp 智能指针
cpp 智能指针原创 2024-07-16 14:54:17 · 1107 阅读 · 0 评论 -
qt json数据合成与解析
{ "serialNum": "123456", "hardVersion": "654321", "protocol": [{ "protocol": "modbus1" }, { "protocol": "modbus2" }, { "protocol": "modbus3" }]}我们对以上json数据进行解析——QJsonParseError err; QJsonDocument doc = QJsonDocument::fromJson(json, &原创 2020-05-13 09:30:05 · 769 阅读 · 0 评论 -
各重要网站
http://www.zdfans.com/html/29618.htmlhttps://blog.csdn.net/qingzhuyuxian/article/details/82022419#comments原创 2019-11-15 16:13:54 · 219 阅读 · 0 评论 -
c++ 命名空间的使用方法
//命名空间的定义,末尾没有分号namespace A{int date;}//使用方式一using namespace A;//方式二using A::date;//方式三A::date原创 2019-04-06 22:32:14 · 308 阅读 · 0 评论