提升使用Linux效率的小操作 保存更新? 本文记录了个人在使用Linux时觉得好用的一些快捷方式/功能; 为那种知道了能提高效率,但是的不知道也并没有影响的操作。 历史命令 该操作用于快速查看已使用过的命令 history history:查看历史执行过的命令 !num:重新执行history命令 ...
分类:
系统相关 时间:
2021-01-16 12:04:18
阅读次数:
0
/*文章内图片*/ #cnblogs_post_body p img { margin:10px; } /*顶一下*/ .diggnum { font-size:28px; color:#6DA47D; font-family:'Microsoft Yahei'; } #div_digg{ widt ...
分类:
其他好文 时间:
2021-01-16 11:55:56
阅读次数:
0
UTF-8, UTF-16, UTF-32 & BOM General questions, relating to UTF or Encoding Forms Is Unicode a 16-bit encoding? Can Unicode text be represented in more ...
分类:
其他好文 时间:
2021-01-15 12:15:52
阅读次数:
0
C++提供了一套运算符并定义了它们作用于内置类型时的操作 运算对象是类类型时,允许重载运算符 表达式由一个或多个运算对象组成,对表达式求值返回结果。把运算符和运算对象组合可得到复杂表达式。 基础 基本概念 一元运算符作用于一个对象,二元运算符作用于两个对象,还有三元运算符?:。函数调用也是特殊的运算 ...
分类:
其他好文 时间:
2021-01-15 12:15:37
阅读次数:
0
http://sousuo.gov.cn/list.htm?q=&n=15&t=paper&childtype=&subchildtype=&pcodeJiguan=%E5%9B%BD%E5%8A%9E%E5%8F%91%E6%98%8E%E7%94%B5&pcodeYear=&pcodeNum=& ...
分类:
其他好文 时间:
2021-01-15 11:56:11
阅读次数:
0
Introduction to the CSS basic box model When laying out a document, the browser's rendering engine represents each element as a rectangular box accord ...
分类:
Web程序 时间:
2021-01-14 11:29:41
阅读次数:
0
在设计可供用户调整大小的窗体时,如何实现该窗体上的控件也应能正确地随窗体的改变而自动调整大小并且能重新定位?此时就要借助控件的.Anchor属性。Anchor属性定义控件的定位点位置。当控件锚定到某个窗体时,如果该窗体的大小被调整,那么该控件维持它与定位点位置之间的距离不变。例如,如果“:Butto ...
字符串的正则方法有:match()、replace()、search()、split() 正则对象的方法有:exec()、test() 正则方法讲解 match() 功能:使用正则表达式模式对字符串执行查找,并将包含查找的结果作为数组返回函数格式:stringObj.match(rgExp) str ...
分类:
其他好文 时间:
2021-01-13 11:04:50
阅读次数:
0
获取样式 window.getComputedStyle(标签.想要获取的属性) //后面的.可加可不加 var obj = window.getComputedStyle(box); console.log( window.getComputedStyle(box) ); console.log( ...
分类:
其他好文 时间:
2021-01-13 10:31:56
阅读次数:
0
Given n, how many structurally unique BST's (binary search trees) that store values 1 ... n? Example: Input: 3 Output: 5 Explanation: Given n = 3, the ...
分类:
其他好文 时间:
2021-01-12 11:12:21
阅读次数:
0