07 2023 档案

摘要:当跟着Qt Book的章节QtQuick Controls编写一个ImageViewer,运行时报错: ``` ERROR: No native FileDialog implementation available. Qt Labs Platform requires Qt Widgets on 阅读全文 »
posted @ 2023-07-30 11:45 凡璞 阅读(228) 评论(0) 推荐(0) 编辑
摘要:## 下载cmake的QtHelp 在[cmake官网的说明文档下载页](https://cmake.org/documentation/),下载QtHelp ![](https://img2023.cnblogs.com/blog/2035938/202307/2035938-2023072619 阅读全文 »
posted @ 2023-07-26 19:44 凡璞 阅读(130) 评论(0) 推荐(0) 编辑
摘要:查看和调节显示器的分辨率使用`xrandr`命令 我们一般需要先查看当前的显示器及其情况再去设置调节 ## 查看当前显示器及其情况 直接在终端输入`xrandr`即可;输出如下: ```text Screen 0: minimum 8 x 8, current 1920 x 1080, maximu 阅读全文 »
posted @ 2023-07-08 19:15 凡璞 阅读(810) 评论(0) 推荐(0) 编辑
摘要:顶层const的含义是:指针本身是一个常量 底层const的含义是:指针所指的对象是一个常量 最简单的区别例子(看const后面是指针p还是指针对应的值*p): ```c++ const int *p = 10; // 底层const int *const P = 10; // 顶层const `` 阅读全文 »
posted @ 2023-07-02 20:36 凡璞 阅读(70) 评论(0) 推荐(0) 编辑

1 2
3 4
5 6
点击右上角即可分享
微信分享提示