2016年12月26日
摘要:
我所在的环境是RedHat 1、第一步 修改/etc/security/limits.conf添加一行 user为生效的用户 user hard core unlimited 2、第二步 在普通用户的.bash_profile里面添加一行 ulimit -S -c unlimited
阅读全文
posted @ 2016-12-26 14:02
川洋
阅读(561)
推荐(0)
2016年12月13日
摘要:
Connection refused:应该是连接的服务端没有启动或者连接端口错误,可以用如下代码测试 client端: server端:
阅读全文
posted @ 2016-12-13 13:55
川洋
阅读(3940)
推荐(0)
2016年11月15日
摘要:
#include <stdio.h>#include <stdlib.h> int main(){ printf("%s\n", getenv("DOMAINID")); return 0;} 必须有头文件stdlib.h
阅读全文
posted @ 2016-11-15 12:53
川洋
阅读(435)
推荐(0)
2016年11月10日
摘要:
#include using namespace std; class A { public: virtual int print()=0; }; class B: public A { public: virtual int get()=0; virtual int print() { coutp...
阅读全文
posted @ 2016-11-10 15:35
川洋
阅读(222)
推荐(0)
2016年11月9日
posted @ 2016-11-09 16:26
川洋
阅读(2787)
推荐(0)
2016年6月16日
摘要:
1 #include <iostream> 2 using namespace std; 3 #define _CLASSDEF(name) class name; \ 4 typedef name * P##name;\ 5 typedef name & R##name;\ 6 typedef n
阅读全文
posted @ 2016-06-16 17:15
川洋
阅读(2294)
推荐(0)
2016年5月27日
摘要:
1 #include 2 #include 3 4 void func(char* format, va_list ptr); 5 void print(char* format,...); 6 7 void print(char* format,...) 8 { 9 va_list ptr; 10 va_list ptr_tmp; 11...
阅读全文
posted @ 2016-05-27 11:34
川洋
阅读(1334)
推荐(0)
摘要:
http://stackoverflow.com/questions/4958384/what-is-the-format-of-the-x86-64-va-list-structure 这是我在stackoverflow上摘录的,上面是链接,va_list实际上是一个只有一个元素的结构体数组 I
阅读全文
posted @ 2016-05-27 11:12
川洋
阅读(985)
推荐(0)
2016年4月4日
摘要:
小端序是低地址在低位,高地址在高位, 大端序相反
阅读全文
posted @ 2016-04-04 23:22
川洋
阅读(231)
推荐(0)
posted @ 2016-04-04 22:42
川洋
阅读(235)
推荐(0)