包装类缓存-128到127之间的数字(系统初始的时候就创建了,当我们调用ValueOf时,首先检查是否在范围内,在则直接取用)integer in1 = integer.valueOf(-128);integer in2 = -128;in1.equals(in2)为true,in1=in2也为tr ...
分类:
编程语言 时间:
2019-09-18 09:21:23
阅读次数:
104
//控制表格滑动 table tbody { display:block; height:450px; overflow-y:scroll; } //固定表头 table thead, tbody tr { display:table; width:100%; table-layout:fixed; ...
分类:
Web程序 时间:
2019-09-18 09:19:07
阅读次数:
199
查看系统变量:1.env命令[root@localhost~]#env2.set命令[root@localhost~]#set*set可以显示用户自定义的变量自定义变量:1.定义变量:[root@localhost~]#a=test[root@localhost~]#echo$atest2.变量命名规则:可包含大小写字母、数字、下划线(不能以数字开头)[root@localhost~]#a=1[r
分类:
系统相关 时间:
2019-09-18 01:08:01
阅读次数:
127
HTML表格由<table>标签定义,下面是一个2行3列的表格: <table> <tr> <td>11</td> <td>12</td> <td>13</td> </tr> <tr> <td>21</td> <td>22</td> <td>23</td> </tr> </table> tr--ta ...
分类:
Web程序 时间:
2019-09-16 19:13:10
阅读次数:
91
一、语法基础1> 表格1.1 格式<tahle align="center" border="1px" cellpadding="10%" > <caption>标题</caption> <tr height="36" width="66%" align="center" > <th>表头</th> ...
分类:
其他好文 时间:
2019-09-13 11:30:37
阅读次数:
127
Java中的集合 Java中的集合包括三大类,它们是Set、List和Map,它们都处于java.util包中,Set、List和Map都是接口,它们有各自的实现类。Set的实现类主要有HashSet和TreeSet,List的实现类主要有ArrayList,Map的实现类主要有HashMap和Tr ...
分类:
其他好文 时间:
2019-09-12 23:48:17
阅读次数:
87
std::vector<cv::Point> resultpoly;cv::approxPolyDP(contours[0], resultpoly,4, true);//轮廓contours[0] ,resultpoly多边形的点集cv::polylines(src, resultpoly, tr ...
分类:
其他好文 时间:
2019-09-10 11:36:44
阅读次数:
113
一、docker环境部署 下载地址 https://dn-dao-github-mirror.qbox.me/docker/install/windows/InstallDocker.msi 二、代码 gitlab https://v.src.corp.qihoo.net/sp_bbs/bbs_tr ...
分类:
其他好文 时间:
2019-09-09 19:49:03
阅读次数:
97
1、打开终端,用cd命令 定位到工程所在的目录。2、调用以下命令即可把每个源代码文件行数及总数统计出来(1)包括空行(会列出每个文件的代码行数):find . "(" -name "*.m" -or -name "*.mm" -or -name "*.c" -or -name "*.h" -or - ...
分类:
其他好文 时间:
2019-09-09 14:47:38
阅读次数:
86
[WIN]如何让您的UserControl显示时不闪烁 前言 之前将.net 1.1 Windows Form程序升级到.net 4.0,结果在开画面时,闪的非常利害! 于是就开始找解决方法。 研究及解决 开始找到了设定DoubleBuffer=tr... ...