2019年3月12日

auto类型详解

摘要: 下面是auto的使用举例:auto x =5; //正确,x是int类型auto pi = new auto(1); //正确,批是int*const auto* v = &x, u = 6; //正确,v是const int*类型,u是const intstatic auto y = 0.0; / 阅读全文

posted @ 2019-03-12 21:00 杜鹃醉鱼鱼 阅读(968) 评论(0) 推荐(0) 编辑

vlc-qt 参考代码

摘要: https://blog.csdn.net/xzpblog/article/details/81811112 LibVLC for android 解码视频并获取每一帧 https://blog.csdn.net/killsmm0/article/details/80037657 阅读全文

posted @ 2019-03-12 14:44 杜鹃醉鱼鱼 阅读(239) 评论(0) 推荐(0) 编辑

Qt使用小技巧

摘要: 1,switch 使用:如果在case语句中定义变量 需要把 case 后面的代码用大括号括起来 否则会提示《 error: C2361: “default”标签跳过“time”的初始化操作》错误。 如 阅读全文

posted @ 2019-03-12 14:05 杜鹃醉鱼鱼 阅读(324) 评论(0) 推荐(0) 编辑

导航