每分钟 采集一次linux信息,采集到的数据暂存到本地sqlite 10分钟通过http上报一次 sqlite库中保存7天的过期数据 monitor4a.out是所有输出,monitor4a.log是INFO级别以上的日志(100MB的5个日志文件循环) python...
分类:
编程语言 时间:
2014-08-04 18:29:57
阅读次数:
407
在eclipse中编写如下的代码,eclipse会给出黄色告警:finally block does not complete normally。
public class Test
{
public static void main(String[] args)
{
System.out.println(m1(null));
}
public ...
分类:
系统相关 时间:
2014-08-04 18:02:37
阅读次数:
200
??
CPU:是有运算器,控制器,存储器组成;CPU中的值得是寄存器而不是主板上的内存
计算计的存储器是内存,CPU的存储器是寄存器RAM
冯诺依曼结构与哈佛结构的区别:哈弗结构在内存中增加了逻辑分段
CS(IP):代码段
DS(bx):数据段
SS(sp):栈段
bss:未初始化的数据段
readelf -a a.out :查看链接生成的.out文件
...
分类:
其他好文 时间:
2014-08-04 17:38:58
阅读次数:
256
1 new? String()与直接赋值的区别? ? String? s1=new String("abc"); ? String? s2="abc"; ?System.out.println(s1==s2);????? //false 详解: 上面两行代码分别会存在内存中三块存储区中,分别是栈,...
分类:
编程语言 时间:
2014-08-04 14:50:57
阅读次数:
246
/*
ID: lucien23
PROG: subset
LANG: C++
*/
#include
#include
using namespace std;
int main()
{
ifstream infile("subset.in");
ofstream outfile("subset.out");
if(!infile || !outfile)
{
cout << ...
分类:
其他好文 时间:
2014-08-04 14:35:27
阅读次数:
200
/*
ID: lucien23
PROG: runround
LANG: C++
*/
#include
#include
#include
using namespace std;
int main()
{
ifstream infile("runround.in");
ofstream outfile("runround.out");
if(!infile || !outfil...
分类:
其他好文 时间:
2014-08-04 14:22:27
阅读次数:
173
软件环境:Windows Server 2008 R2 sp1 SQL Server 2008 R2 sp2架构:ServerA(主体)+ServerB(镜像)+ServerSub(订阅)+ServerDist(分发)特别注意:ServerDist分发服务器为单机,故开启了Sync_With_Bac...
分类:
数据库 时间:
2014-08-04 14:04:47
阅读次数:
381
interface Fruit { void eat(); } class Apple implements Fruit { public void eat() { System.out.println("I am eating apple."); } } class Orange implemen...
分类:
编程语言 时间:
2014-08-04 13:28:37
阅读次数:
229
package extend;
import org.junit.Test;
import cn.nailsoul.reflect.util.ReflectUtil;
public class extendTest {
@Test
public void testAcccessMembers(){
System.out.println("===========testAcccessM...
分类:
编程语言 时间:
2014-08-03 23:18:36
阅读次数:
346
1.安装 nfs 服务yum install nfs-utils rpcbindchkconfig nfs on2.exprotfs 文件/usr/sbin/exportfs -rvcat /etc/exports/home/ 10.0.2.0/24(rw,sync,all_squash,anonu...
分类:
其他好文 时间:
2014-08-03 22:57:26
阅读次数:
172