上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页
摘要: https://github.com/inkuang/WindowResizer/releases WindowResizer 阅读全文
posted @ 2022-04-17 15:45 ethon-wang 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 卸载插件重启后解决 阅读全文
posted @ 2022-04-17 13:11 ethon-wang 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: https://link.zhihu.com/?target=https%3A//f-droid.org/ 阅读全文
posted @ 2022-04-15 09:09 ethon-wang 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 使用register int申请的变量是存储在CPU中央寄存器中的(寄存器是中央处理器内的组成部分。寄存器是有限存贮容量的高速存贮部件),而使用int申请的变量是存储在内存中。 使用register修饰的变量可以提高它的读写速度,一般用于多层循环中。 阅读全文
posted @ 2022-04-05 18:26 ethon-wang 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 可以用十进制或科学计数法表示浮点字面值常量。 科学计数法指的是,指数用 E 或 e 表示。 默认的浮点字面值常量是double型。后缀加上 F 或 f 表示单精度,加上 L 或 l 表示拓展精度(不推荐使用小写字母 l) 下面每一列的字面值是表示相同的值: | 3.14159F | .001f | 阅读全文
posted @ 2022-04-03 22:33 ethon-wang 阅读(95) 评论(0) 推荐(0) 编辑
摘要: debug 解决方案:在方法体前加const gcc版本:4.7.23 阅读全文
posted @ 2022-04-03 14:49 ethon-wang 阅读(125) 评论(0) 推荐(0) 编辑
摘要: cpp x&(-x) x= 1001100 -x=0110100(补码) 阅读全文
posted @ 2022-04-02 17:51 ethon-wang 阅读(19) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/1963362/202204/1963362-20220401144807623-305853145.svg) 阅读全文
posted @ 2022-04-01 14:49 ethon-wang 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<algorithm> #include<complex> using namespace std; using PDD=pair<double,double>; const int N=1e3+10; const double eps=1e-6 阅读全文
posted @ 2022-03-28 09:56 ethon-wang 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<algorithm> #include<queue> #include<vector> using namespace std; using PII=pair<int,int>; const int N=5e4+10; int n,id[N]; 阅读全文
posted @ 2022-03-28 09:41 ethon-wang 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页