System.gc()的理解 手动gc理解不可达对象的回收行为 ...
分类:
其他好文 时间:
2020-07-18 13:36:31
阅读次数:
62
在Linux下安装redis的时候,执行make报 make[1]: *** [adlist.o] 错误,百度后发现是因为 Redis是C实现的,需要gcc进行编译,而我装的centos 7默认是没有安装的,需要自己进行安装。 通过yum进行安装: yum install -y gcc g++ gc ...
分类:
系统相关 时间:
2020-07-18 00:52:08
阅读次数:
73
构建LNMP+WordPress 1.安装LNMP环境 修改主机名 [root@test ~]# hostnamectl set-hostname lnmp [root@test ~]# bash 将提供的lnmp1.6-full.tar.gz软件包,上传到虚拟机的/root目录下,并解压 [roo ...
分类:
其他好文 时间:
2020-07-17 19:40:40
阅读次数:
81
备份: 在cmd命令行中,执行sqlplus,用管理员账号登录 建立目录对象: create directory expdir as ‘D:\expdir’; 赋予要备份数据的用户导出权限: grant exp_full_database to username(你要备份的用户名); 另打开一个cm ...
分类:
数据库 时间:
2020-07-17 16:03:09
阅读次数:
80
/* Name: Copyright: Author: Mudrobot Date: <DATETIME> Description: */ #include<bits/stdc++.h> #define gc() getchar()//caution!!! #define LL long long ...
分类:
其他好文 时间:
2020-07-17 14:04:00
阅读次数:
107
字符串方法: length:返回字符串的长度 var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var sln = txt.length; indexOf():返回字符串中指定文本首次出现的索引位置; var str = "The full name of China ...
分类:
Web程序 时间:
2020-07-17 13:43:21
阅读次数:
93
个人感觉默认Git Bash 简直没脸看(乌漆嘛黑),Google了下如何修改Git Bush 1.修改.minttyrc文件 FontHeight=16 Font=Consolas Transparency=low FontSmoothing=full Locale=zh_CN Charset=G ...
IntelliJ IDEA 启动一个之前运行正常的项目失败,报错是: java.lang.OutOfMemoryError : GC overhead limit exceeded 百度了一下,说是 IntelliJ IDEA 设置的内存太小,需要设置大一点。修改完成后,果然可以运行了,这里记录一下 ...
分类:
编程语言 时间:
2020-07-16 21:48:15
阅读次数:
310
mininet> r1 xterm Warning: This program is an suid-root program or is being run by the root user. The full text of the error or warning message cannot ...
分类:
Web程序 时间:
2020-07-15 23:29:02
阅读次数:
112
查询Mysql当前正在运行的SQL语句:show full processlist或者show processlist 结果都是从information_schema.processlist表取的结果,所以也可以主直接查询该表select info from information_schema.p ...
分类:
数据库 时间:
2020-07-15 15:27:02
阅读次数:
69