05 2022 档案
QT 中间变量尽可能用精度高的
摘要:必要的话末尾才用精度低的,否则引起大误差 阅读全文
posted @ 2022-05-30 01:31 FrostyForest 阅读(17) 评论(0) 推荐(0)
git push错误failed to push some refs to的解决方法
摘要:error: failed to push some refs to 'git@github.com:yangchao0718/cocos2d.git hint: Updates were rejected because the tip of your current branch is behi 阅读全文
posted @ 2022-05-29 00:15 FrostyForest 阅读(1766) 评论(0) 推荐(0)
牢记:不要随便使用运算符
摘要:要想清楚背后的含义,不要将数学常识和习惯带到编程上,很多运算符往往需要运算符重载 阅读全文
posted @ 2022-05-28 10:22 FrostyForest 阅读(23) 评论(0) 推荐(0)
QT 输入中文字符串时编译提示常量中含有换行符
摘要:解决方法:QString::fromLocal8Bit(str) 阅读全文
posted @ 2022-05-27 16:17 FrostyForest 阅读(155) 评论(0) 推荐(0)
Qt messagebox弹出两次
摘要:解决方法:调用messagebox前加 ui->lineEdit_2->clear(); 原因:未知 阅读全文
posted @ 2022-05-27 16:05 FrostyForest 阅读(421) 评论(0) 推荐(0)
内存条超频教训
摘要:即使是同品牌,也要买同颗粒的内存,最好是连号买 阅读全文
posted @ 2022-05-24 13:24 FrostyForest 阅读(127) 评论(0) 推荐(0)
测试技术考试失败的教训
摘要:总结工作没做到位,漏了一些 看一眼就以为自己记住了,没有落实到纸上,默写 3.没有好好分析公式来源去路,导致记错,不会用 阅读全文
posted @ 2022-05-21 18:04 FrostyForest 阅读(27) 评论(0) 推荐(0)
新配电脑的预算规划
摘要:cpu:AMD 2600x,450 主板:微星b450m motor,150 显卡:AMD rx584,600 固态硬盘:东芝铠侠 rc20 1T,600 电源:振华铜皇450w,150 机箱:50 合计:2000 阅读全文
posted @ 2022-05-16 00:13 FrostyForest 阅读(82) 评论(0) 推荐(0)
材料力学弯矩计算及弯矩图绘制软件
摘要:https://pan.baidu.com/s/1QfM0ceRq_z4ysaUhNbUd2Q bv81 阅读全文
posted @ 2022-05-15 09:59 FrostyForest 阅读(505) 评论(0) 推荐(0)
github加速
摘要:https://pan.baidu.com/s/10K-mhXBEGg5QU5L12WHLxA n8fs 阅读全文
posted @ 2022-05-15 09:52 FrostyForest 阅读(25) 评论(0) 推荐(0)
C++不同类型变量之间的赋值要注意强制类型转换
摘要:float a=1/2; 会输出a=0 正确写法 float a=(float)1/2; 或者直接初始化,避免赋值操作 float a(1/2); 阅读全文
posted @ 2022-05-02 20:11 FrostyForest 阅读(67) 评论(0) 推荐(0)
沪深300市盈率比国债市盈率三年百分位
摘要:percentrank(加权平均市盈率(000300)/(1/10年国债收益率),250*3+60) 阅读全文
posted @ 2022-05-01 16:28 FrostyForest 阅读(55) 评论(0) 推荐(0)
Qt快捷键
摘要:alt +enter // 自动创建类的定义 F1 // 查看帮助,文档 F2 // 快速到变量声明 Shift + F2 // 函数的声明和定义之间快速切换 F4 // 在 cpp 和 h 文件切换 Ctrl +M 创建书签, Ctrl + . 切换书签 Alt + M打开书签栏。 Ctrl + 阅读全文
posted @ 2022-05-01 11:23 FrostyForest 阅读(203) 评论(0) 推荐(0)