查看java进程运行状况jps -lvm查看java默认堆大小 java -XX:+PrintFlagsFinal | grep MaxHeapSizeeclipse调试设置vm参数 在项目上右键,依次点击“Debug As ”-> “Debug Configurations ”,在Argument ...
分类:
编程语言 时间:
2016-10-06 00:12:42
阅读次数:
198
Time module: 1. Time() meaning how many second passed after year 1970.(epoch) 2. Gmtime()(takes one argument) function convert the timestamp to struct ...
分类:
编程语言 时间:
2016-10-05 07:18:14
阅读次数:
126
在eclipse中设置 设置步骤如下: 1.点击eclipse上的debug图标旁边的下拉箭头 2.然后选择Run Configurations, 3.系统弹出设置tomcat配置页面,在Argument中末尾添加参数中的VM arguments中追加: -Xms256M -Xmx512M -XX: ...
分类:
系统相关 时间:
2016-09-30 12:25:51
阅读次数:
200
今天又查了一下fprintf,其中对第一个参数stderr特别感兴趣。 int fprintf(FILE *stream,char *format,[argument]); 在此之前先区分一下:printf,sprintf,fprintf。 1,printf就是标准输出,在屏幕上打印出一段字符串来。 ...
分类:
其他好文 时间:
2016-09-29 01:40:37
阅读次数:
126
伪数组(类数组):无法直接调用数组方法或期望length属性有什么特殊的行为,不具有数组的push,pop等方法,但仍可以对真正数组遍历方法来遍历它们。典型的是函数的argument参数,还有像调用getElementsByTagName,document.childNodes之类的,它们都返回No ...
分类:
编程语言 时间:
2016-09-26 10:52:40
阅读次数:
148
1、printf / scanf 知识点:变长参数函数使用: 头文件#include<stdarg.h> 使用va_list ap; 来声明一个变长参数类型的变量ap,即argument pointer。 使用va_start(ap, fmt); fmt为最后一个有名参数(函数原型void prin ...
分类:
其他好文 时间:
2016-09-22 23:43:57
阅读次数:
160
测试logfilec.c的时候,有个sendto(sock,msg,strlen(msg),0,&addr,addrlen),编译时提示: logfilec.c:30: warning: passing argument 5 of ‘sendto’ from incompatible pointer ...
分类:
系统相关 时间:
2016-09-18 19:23:53
阅读次数:
338
//pthread_key_create 使用&key pthread_setspecific pthread_getspecific 直接使用key(作为pkey的索引)//同一个key只能create一次(进程内),否则报22错误,invalid argument//pthread_once & ...
分类:
编程语言 时间:
2016-09-16 21:09:16
阅读次数:
232
--查找运行请求时间,参数等(可以是某用户的,某个报表) select c.user_name, papf.full_name, b.user_concurrent_program_name, a.request_date, a.argument_text, (a.actual_completion ...
分类:
其他好文 时间:
2016-09-14 16:27:05
阅读次数:
193
In C#, out keyword 是argument传值变成passed by reference. out keyword 在同时返回多个值时很有用. 与ref keyword 相似. 若是使用out keyword传argument, 那么在method 的definition 和 使用时都 ...