-Xms1024m -Xmx2048m -XX:ReservedCodeCacheSize=500m -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=50 -ea -XX:CICompilerCount=2 -Dsun.io.useCanonPrefixCache= ...
分类:
其他好文 时间:
2020-06-04 13:56:57
阅读次数:
67
整站灰度CSS 代码 body *{ -webkit-filter: grayscale(100%); /* webkit */ -moz-filter: grayscale(100%); /*firefox*/ -ms-filter: grayscale(100%); /*ie9*/ -o-fil ...
分类:
Web程序 时间:
2020-06-03 23:28:53
阅读次数:
90
https://www.cnblogs.com/yeungchie/ code procedure(ycartGo(length1) prog((foundits) for(x 1 length1 printf("\nTotal length : %d(%d)\n" x + 3 x) _ycart( ...
分类:
其他好文 时间:
2020-06-03 23:15:15
阅读次数:
71
一、结构体 有时我们需要将不同类型的数据组合成一个有机的整体,如:一个学生有学号/姓名/性别/年龄/地址等属性。显然单独定义以上变量比较繁琐,数据不便于管理。这时候就会用到C语言中的另一种构造数据类型——结构体。 1、结构体变量的定义和初始化 定义结构体变量的方式:(1)先声明结构体类型再定义变量名 ...
分类:
编程语言 时间:
2020-06-03 20:48:08
阅读次数:
74
netstat -ano 查看端口情况 tasklist|findstr “9220” 通过PID号“9220”查看对应端口被什么进程占用了 netstat -aon|findstr "8080" 查看端口8080对应的PID tskill 1844 结束PID为1844的进程 ...
添加Epel源: 方法一: sudo yum install epel-release -y 方法二: sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm sudo yum i ...
分类:
其他好文 时间:
2020-06-02 13:28:48
阅读次数:
138
在多并发情况下使用SimpleDateFormat需格外注意 :SimpleDateFormat除了format是线程不安全以外,parse方法也是线程不安全的。 LocalDate 获取年月日 //获取当前年月日 LocalDate localDate = LocalDate.now(); //l ...
分类:
编程语言 时间:
2020-06-01 23:57:38
阅读次数:
108
编写spring的配置文件: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLS ...
分类:
其他好文 时间:
2020-06-01 23:29:30
阅读次数:
61
网上搜索到的都是用pip install mysql-python命令进行安装,可是实际操作时发生错误,错误提示: error: Microsoft Visual C++ 14.0 is required ..... 尝试安装visual C++ ,但是失败,具体原因不详 解决方案: 从 http: ...
分类:
数据库 时间:
2020-06-01 10:30:01
阅读次数:
91
code unless(fboundp('ycFlattenList) procedure(ycFlattenList(listin) prog((output) foreach(arg listin if(listp(arg) output = append(output ycFlattenLis ...
分类:
其他好文 时间:
2020-05-31 20:06:48
阅读次数:
90