这里的Qstring字符串输出的内容,一开始没有看的懂,在经过补习计算机相关输出知识后,就一下子懂了,其实这个很简单,话不多说,上程序,还是上一个文章的程序。 ColorItem::ColorItem() : color(QRandomGenerator::global()->bounded(256 ...
分类:
其他好文 时间:
2021-05-24 14:28:22
阅读次数:
0
1.git下载与安装 https://gitforwindows.org/ 一般一直下一步即可 任务栏 打开Git Bash,输入: # 配置用户名 git config --global user.name "username" //( "username"是自己的账户名,) # 配置邮箱 git ...
分类:
Web程序 时间:
2021-05-24 13:46:15
阅读次数:
0
使用: 1、在build.gradle中添加 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories ...
分类:
其他好文 时间:
2021-05-24 13:15:41
阅读次数:
0
1.下载vue-cli3脚手架后,执行npm run serve 正常。执行npm run build 后,打开index.html文件后,console报错,找不到js文件。index.html文件里显示 We're sorry but vue-hello-world-ui-select does ...
分类:
其他好文 时间:
2021-05-24 12:59:50
阅读次数:
0
现实中打牌 接收到新牌后在已有的牌里面进行排序,然后找到属于自己的位置进行插入: 手中的牌永远是有序的 Code package kb.algorithm; public class InsertionSort { public static void main(String[] args) { i ...
分类:
编程语言 时间:
2021-05-24 12:38:02
阅读次数:
0
valgrind使用 valgrind --tool=memcheck --leak-check=full --log-file=valgrind-log.txt ./build/executable --args gdb使用带参数 gdb --args ./build/executable --a ...
分类:
其他好文 时间:
2021-05-24 12:21:49
阅读次数:
0
在上一篇中,我们说了模拟登录, 下面我们说说附件上传。 据说,最早的http协议是不支持附件上传的,后来有添加了一个RFC 2045 协议,才支持附件上传,关于附件上传,请参见 http://www.cnblogs.com/greenerycn/archive/2010/05/15/csharp_h ...
Code package kb.algorithm; public class BubbleSort { public static void main(String[] args) { int[] a = new int[]{3, 6, 4, 9, 1, 7, 2, 5}; sort(a); St ...
分类:
编程语言 时间:
2021-05-24 11:14:04
阅读次数:
0
npm install -g @vue/cli npm uninstall -g @vue/cli yarn global add @vue/cli yarn global remove @vue/cli 首先确定你的是npm安装的还是yarn安装的,要用对应的卸载方式 如果还是卸载不成功,那么有以 ...
分类:
系统相关 时间:
2021-05-24 10:59:47
阅读次数:
0
config.ini [phone] imei = 123456789 num = 0 / 14 build = 00WWYL test.py CUR_DIR = os.path.dirname(os.path.abspath(__file__)) configFilePath = os.path. ...
分类:
编程语言 时间:
2021-05-24 09:30:30
阅读次数:
0