之前遇到棘手的BUG总是在处理过后就不管了,导致后面碰到后重复工作太多。现专门开辟一篇日志以记录接下来一路上的DEBUG记录。【C++】1.mt.exe :
general error c101008d: Failed to write the updated manifest to the res...
分类:
其他好文 时间:
2014-05-26 22:30:47
阅读次数:
285
continue和break的用法一样,直接写上这个单词,后面加一个分号就行比如:continue;break;我们先来谈continue看代码
for (int i=0; i<10; i++) { Console.Write(i); }这个程序的意思输出从0...
分类:
其他好文 时间:
2014-05-26 20:36:46
阅读次数:
351
今天在调试摄像头标定的时候发现了几个问题:fs.open("result.xml",
FileStorage::WRITE); fs > objectPoints(1);否则objectPoints[0].clear(); for( int
i = 0; i < boardheight; ++i )...
分类:
其他好文 时间:
2014-05-26 13:47:24
阅读次数:
241
Features 256 bits EEPROM memory organized in 8
pages of 32 bits each 32 bits unique factory programmed serial number Typical
operating frequency : ...
分类:
其他好文 时间:
2014-05-26 13:32:43
阅读次数:
287
IOzone是一个文件系统测试基准工具。可以测试不同的操作系统中文件系统的读写性能。可以通过
write, re-write, read, re-read, random read, random write, random mix, backwards
read, record rewirte, ...
分类:
其他好文 时间:
2014-05-26 13:15:14
阅读次数:
298
1 新建一般处理程序 .ashx public void ProcessRequest
(HttpContext context) { context.Response.ContentType =
"text/plain";context.Response.Write("Hello W...
分类:
其他好文 时间:
2014-05-26 07:24:18
阅读次数:
221
后退+刷新在C#
Web程序中,如为页面按钮写返回上一页代码this.RegisterClientScriptBlock("E",
"");其中,history.go(-2),要写为-2,因在按钮事件触发前,已刷新一次页面,所以应是-2。Response.Write("");此处也要写为“-2”。....
分类:
编程语言 时间:
2014-05-26 02:24:07
阅读次数:
383
socket模型:
1、阻塞模型
一个单进程accept阻塞,接收到客户端请求后,read消息,处理write返回,然后循环继续accept。
这种模型最最简单,不实际,没什么实际用途,对于新手教学还行。
2、多进程(线程)模型
主进程循环accept阻塞,接收到客户端请求后,fork子进程处理,子进程read阻塞,接收客户端消息并响应。
这种模型是我使用到...
分类:
其他好文 时间:
2014-05-24 19:50:08
阅读次数:
274
Jimmy writes down the decimal representations of all natural numbers between and including m and n, (m ≤ n). How many zeroes will he write down?
Input
Input starts with an integer T (≤ 11000), denot...
分类:
其他好文 时间:
2014-05-22 22:59:18
阅读次数:
354
1.indexOf()方法,从前往后查找字符串位置,大小写敏感,从0开始计数。同理,lastIndexOf() 方法从后往前,两个方法对于相同的检索条件输出的结果是一样的
例如:
var str="Hello World!"
document.write(str.indexOf("Hello"))//输出0
document.write(str.indexOf("World"))/...
分类:
Web程序 时间:
2014-05-22 22:54:50
阅读次数:
313