码迷,mamicode.com
首页 >  
搜索关键字:no write has been do    ( 38312个结果
Twitter web information
http://developer.51cto.com/art/201307/404612.htm150M active users300K Qps (read, only 6000 write/s)22MB/s triffic800 redis server. (use redis list)内部组...
分类:Web程序   时间:2014-05-14 03:50:34    阅读次数:365
.net 错误处理
第一步在页面中写OnError方法:protected override void OnError(EventArgs e){Exception ex = Server.GetLastError();//在服务器获取最新产生的错误Response.Write("Error"+ex.Message);...
分类:Web程序   时间:2014-05-14 03:37:17    阅读次数:303
【LeetCode】Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?思路:先将矩阵转置,然后将第一列与最后...
分类:其他好文   时间:2014-05-14 03:09:35    阅读次数:225
c++ template怎么使用及注意事项
c++ 中的template和c#的什么有点相似?先看下定义方式:template T myFunction(T param1,T param2...){ T result= param1; // do something return result; ...
分类:编程语言   时间:2014-05-14 03:05:27    阅读次数:332
python中的静态方法和类方法
静态方法独立于类和类的实例,它是定义在类作用域内的方法。可以由类和实例直接调用。 类方法和静态方法都要使用装饰器来定义,定义的基本格式是: @staticmethod def ():          #do something 类方法定义的基本格式是: @ classmethod def (cls):          #dosomething 类方法与成员方法不同的是,它需...
分类:编程语言   时间:2014-05-11 22:25:53    阅读次数:422
ZOJ 1151 Word Reversal反转单词 (string字符串处理)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=151 For each list of words, output a line with each word reversed without changing the order of the words. This problem contains multi...
分类:其他好文   时间:2014-05-11 22:20:43    阅读次数:443
ZOJ 2109 FatMouse' Trade (背包 dp + 贪心)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1109 FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the warehouse containing his favorite food, JavaBean...
分类:其他好文   时间:2014-05-11 20:57:36    阅读次数:400
ZOJ 2724 Windows 消息队列 (优先队列)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2724 Message queue is the basic fundamental of windows system. For each process, the system maintains a message queue. If something h...
分类:Windows程序   时间:2014-05-11 20:31:56    阅读次数:796
Linux环境编程之文件I/O(五):fcntl函数
引言: 对于一个普通的文件,我们可以想到的对它的操作有,读取文件的内容、写数据到文件中,这些都是前面提到的read、write函数的作用。除此之外,还可以获取文件的其他性质,并对这些性质进行修改,比如文件的描述符、文件描述符标记、文件状态标志等等。这些对文件性质的修改就由fcntl函数完成。 函数介绍:        #include        #include     ...
分类:系统相关   时间:2014-05-11 18:24:05    阅读次数:335
【LeetCode】Reverse Linked List II
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No...
分类:其他好文   时间:2014-05-11 16:03:43    阅读次数:327
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!