电脑常用快捷键 切换页面 : alt +tab 全选:ctrl + a 打开菜单界面 : windows 关闭界面/结束游戏界面 :alt+F4 复制:ctrl +c 粘贴:ctrl+v 大部分软件撤回撤销 :ctrl+z 保存代码:ctrl+s ( 写一行保存一行) 永久删除软件,在根本上删除 s ...
分类:
其他好文 时间:
2021-03-17 14:12:56
阅读次数:
0
AtCoder Beginner Contest 195 Editorial Problem A - Health M Death(opens new window) 只要检查 \(H\equiv 0\) 即可. Time complexity is \(\mathcal{O}(1)\). Spac ...
分类:
其他好文 时间:
2021-03-17 14:07:28
阅读次数:
0
原文:https://reactjs.org/blog/2019/08/15/new-react-devtools.html Introducing the New React DevTools We are excited to announce a new release of the Reac ...
分类:
其他好文 时间:
2021-03-17 14:05:07
阅读次数:
0
我们可以将图片的加载写成一个promise,一旦加载完成,promise的状态就发生变化 const preloadImage = function (path) { return new Promise(function (resolve, reject) { const image = new ...
分类:
其他好文 时间:
2021-03-16 14:11:15
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0
2021年阿勒泰地区中考录取分数线,将于7月中下旬公布!请考生家长注意收藏 进入查看:2021年阿勒泰地区中考录取分数线 In 1866, she set up a clinic for women in London, thanks to her father's backing; in 1870 ...
分类:
其他好文 时间:
2021-03-16 13:55:31
阅读次数:
0
利用File类和文件流InputStream、OutputStream,生成Excel表文件 目前能生成文件,但是无法打开 问题出在 HSSFWorkbook hssfWorkbook = new HSSFWorkbook(inputStream); 这一句。 ...
分类:
移动开发 时间:
2021-03-16 13:51:09
阅读次数:
0
冒泡排序 1.动图演示 2.代码实现 private static void bubbleSort(int[] arr) { if (arr.length <= 1) return; for (int i = 0; i < arr.length; i++) { // 用于标识数组是否有序 boole ...
分类:
编程语言 时间:
2021-03-16 13:24:13
阅读次数:
0
font2 = {'family': 'Times New Roman', 'weight': 'normal', 'size': 12, } ax.legend(loc='lower center', bbox_to_anchor=(0.5, 1), fancybox=True, shadow=T ...
分类:
其他好文 时间:
2021-03-16 12:03:49
阅读次数:
0
Java基础语法 标识 单行标注 // 多行标注 /* */ 多做标注 关键字 public class Demo02 { public static void main(String[] args) { String ab="c"; System.out.print(ab); } } 注意语法中符 ...
分类:
编程语言 时间:
2021-03-16 11:57:10
阅读次数:
0