上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 128 下一页
摘要: windows版本: 1、准备编译好的GRPC包 编译方法:https://www.cnblogs.com/judes/p/15437731.html 2、在磁盘指定位置加上自己的三方包路径 新建文件夹:third_party,将GRPC包放进去;也可以放其他三方包如boost库等 3、添加系统变量 阅读全文
posted @ 2021-11-13 13:13 朱小勇 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1、去除空格 string.erase(std::remove_if(string.begin(), string.end(), std::isspace), string.end()); 2、去除指定单词 std::string a = "class * A"; a = a.substr(a.fi 阅读全文
posted @ 2021-11-12 17:30 朱小勇 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1、功能 打印变量的类型 2、使用 ①、 int a; cout<<typeid(a).name();//int class A{ }; A a; cout<<typeid(a);//class A A* b = new A(); cout<<typeid(b);//class A * 3、获取继承 阅读全文
posted @ 2021-11-12 13:17 朱小勇 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 模板类的声明和实现不能分开放,需要都放在头文件里 阅读全文
posted @ 2021-11-12 13:13 朱小勇 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 基本原理就是函数回调 1、增加自定义类,并继承QObjec,并加入Q_OBJECT宏。 2、在类中添加signals宏并添加信号;添加slots宏并添加槽函数。 3、执行qmake生成Makefile。 4、执行编译 moc【Qt的元对象编译器】先将类编译生成moc_xxx.cpp文件,为我们增加了 阅读全文
posted @ 2021-11-10 17:30 朱小勇 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 1、宏定义 #define EnumToStr(val) #val 2、使用 enum { Enum1 = 0, ENUM2 }; std::cout<<EnumToStr(Enum1); 阅读全文
posted @ 2021-11-10 12:35 朱小勇 阅读(1275) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/58166572 阅读全文
posted @ 2021-11-10 09:16 朱小勇 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、现象 t还是空指针 2、解决 参考:https://blog.csdn.net/LYAJJ/article/details/110263038 阅读全文
posted @ 2021-11-09 09:53 朱小勇 阅读(48) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lidabo/p/7783359.html 阅读全文
posted @ 2021-11-09 08:40 朱小勇 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1、现象 VS+Qt工程,通过QUrl访问资源文件形式,让QQuickWidget加载QML,运行后QML是黑的,打印提示没有找到QML QUrl source(":/qml/Resource/qml/login.qml"); .... 2、问题分析 就是没有找到资源,原因未知;同样的方式能找到图片 阅读全文
posted @ 2021-11-03 20:02 朱小勇 阅读(731) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 128 下一页