https://www.cnblogs.com/hepeng/p/8780552.html public class ShareMem { [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr Se ...
向前删除:delete 向后删除:control + D safair快捷键: 新增一个tab页:ctrl + T 关闭一个tab页:command+w 其他safair快捷键:https://support.apple.com/zh-cn/guide/safari/cpsh003/mac ...
分类:
系统相关 时间:
2021-04-26 13:16:55
阅读次数:
0
粘贴历史:shift+command+h 分窗口操作:shift+command+d(横向)command+d(竖向) 查找和粘贴:command+f 呼出查找功能 tab 键选中找到的文本 option+enter 粘贴 ...
分类:
其他好文 时间:
2021-04-26 13:14:27
阅读次数:
0
下标越界及基本特点 数组的四个基本特点 其长度是确定的。数组一旦被创建,它的大小是不可以改变的。 其元素必须是相同类型的,不允许出现混合类型。 数组中的元素可以是任何数据类型,包括基本类型和引用类型。 数组变量属于引用类型,数组也可以看作是对象,数组中的每个元素相当于该对象的成员变量。数组本身就是对 ...
分类:
其他好文 时间:
2021-04-24 13:51:04
阅读次数:
0
概述 tree for windows 背景 win10 环境下, 我需要打印 文件树 问题 git 默认是不带 tree 命令的 cmd 好像有, 但是我不大想用 思路 尝试去搞一个 好在有前人做过类似的工作, 所以我可以坐享其成 环境 os win10 20H2 mintty 3.4.0 tre ...
Profiling is an indispensable measure for analyzing and optimizing the performance of your program. A typical profiler like GNU gprof will complete th ...
分类:
其他好文 时间:
2021-04-20 14:35:11
阅读次数:
0
1、关闭MySQL [root@mysql ~]# /etc/init.d/mysqld stopShutting down MySQL.. SUCCESS! 2、修改参数文件/etc/my.cnf [root@mysql ~]# cat /etc/my.cnf[mysqld] port=3306 ...
分类:
数据库 时间:
2021-04-20 14:29:49
阅读次数:
0
一: shell编程介绍 1、一个shell脚本运行必须要拥有r和x权限; chamod u+x 1.txt 2、运行一个shell脚本的3个步骤: (1)启动bash解释器 (2)bash把文件内容从硬盘读入内存 (3)bash把读入到内存的内容进行语法解释,控制操作系统执行shell代码 写脚本 ...
分类:
其他好文 时间:
2021-04-16 12:25:54
阅读次数:
0
参见微软官方 https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-versionusing System; using System.Collections.Generic; using System.Lin ...
上一篇说了提到mutation时如何传参,写法如下: const five = 5 this.$store.commit('increfive',five) 但这种写法是普通的写法,还有一种比较特殊的写法,如下: const ten = 10 this.$store.commit({ type: ' ...
分类:
其他好文 时间:
2021-04-12 11:46:34
阅读次数:
0