// 文本流 QFile file("aaa.txt"); file.open(QFileDevice::WriteOnly); QTextStream stream(&file); stream<<QString("hell oworld")<<123456; file.close(); // 读 ...
分类:
其他好文 时间:
2021-05-24 16:16:10
阅读次数:
0
exchange_declare($exchange, $type, $passive = false, $durable = false, $auto_delete = true, $internal = false, $nowait = false, $arguments = array(), ...
分类:
其他好文 时间:
2021-05-24 15:51:32
阅读次数:
0
wget http://nginx.org/download/nginx-1.16.1.tar.gz # 解压 tar -xzf nginx-1.16.1.tar.gz cd nginx-1.16.1 # yum升级 yum update # yum安装依赖 yum -y install gcc p ...
分类:
Web程序 时间:
2021-05-24 15:28:40
阅读次数:
0
目前市场上有各种各样的软件原型设计工具,Tapcase、UIDesigner + UIDPlayer、Briefs + Briefscase,各有各的特点,例如有的主打高保真,有的宣传高交互,而有的则是绝对的朴素快捷,例如国外通过直接手绘然后拍照上传作为控件、布局的原型设计工具—Pop。 在大量的原 ...
分类:
其他好文 时间:
2021-05-24 15:12:26
阅读次数:
0
1. 水平居中(margin: auto;)子父元素宽度固定,子元素上设置 margin: auto; 子元素不能设置浮动,否则居中失效。 #div1{ width: 300px; height: 300px; border: 1px solid red; } #div1 p { width: 10 ...
分类:
Web程序 时间:
2021-05-24 15:08:56
阅读次数:
0
子查询 记录 [3,+2) 从0编号,第三行记录序号为 2limit offset 子查询 子查询查出第三行记录的dept_no 导表sql -- MySQL dump 10.13 Distrib 8.0.22, for Win64 (x86_64) -- -- Host: localhost Da ...
分类:
数据库 时间:
2021-05-24 14:29:51
阅读次数:
0
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci ...
分类:
其他好文 时间:
2021-05-24 13:58:51
阅读次数:
0
简介 使用感觉类似动态规划的思路进行计算 code class Solution { public: int maxProfit(vector<int>& prices) { int inf = 1e9; int minPrice = inf; int maxProfit = 0; for(auto ...
分类:
其他好文 时间:
2021-05-24 13:09:51
阅读次数:
0
如果在程序中禁用了SWD调试接口,即将SWD所用的IO口当作普通的IO口使用时,下载完第一次程序后,如果从flash启动(BOOT0==0)则无法继续使用SWD接口重新下载程序或者调试; 此时可能会出现如下提示: Connecting … Connecting via USB to J-Link d ...
分类:
其他好文 时间:
2021-05-24 12:33:42
阅读次数:
0
wxml: <!--导航条--><view class="navbar"> <text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key="unique ...
分类:
微信 时间:
2021-05-24 12:04:59
阅读次数:
0