摘要:
http://www.cnblogs.com/lua5/archive/2010/12/05/1896755.html c语言趣味题目http://www.cppblog.com/OnTheWay2008/archive/2010/03/24/110467.html 求一个unsigned int 数的二进制表示中有多少个1?
阅读全文
posted @ 2014-03-28 13:20
叶城宇
阅读(153)
推荐(0)
摘要:
fun(){ #创建目录Test1和Test2 mkdir /work/Study/Test1 mkdir /work/Study/Test2 #通过mount命令将Test1绑定挂载在test2上 mount --bind /work/Study/Test1 /work/Study/Test2 #通过touch命令生成1.txt和2.txt文件 touch /work/Study/Test1/1.txt touch /work/Study/Test1/2.txt #实现输入两个数,将之间的值输入到1.txt,将1.txt的内容复制到2.txt,再追加逆序到2.txt上面 read min;.
阅读全文
posted @ 2014-03-17 09:59
叶城宇
阅读(137)
推荐(0)
摘要:
Logiscope测试机理 http://blog.csdn.net/cmy673986/article/details/9163247http://www.cnitblog.com/qiuyangzh/archive/2011/12/07/955.html---测试专业人士书写的Logiscope使用说明 http://blog.csdn.net/cmy673986/article/details/9163289
阅读全文
posted @ 2014-03-06 11:00
叶城宇
阅读(159)
推荐(0)
摘要:
/** 函数功能:将数值小数点后面多余的零清空。* 参数描述:* [in] aSource - 输入的源数值;* [out] aDestination - 输出截取后的数值* [in] iSize - 输入源数值长度*/void cutOutZero(const char aSource[], char aDestination[], int iSize){ int iLength =0; for(int i = iSize -1; i >=0; i--) { if(aSource[i] == '0') { continue; } else { if(aSource[i]
阅读全文
posted @ 2014-03-03 14:35
叶城宇
阅读(3649)
推荐(0)
摘要:
http://blog.51cto.com/zt/20/1/ ---qt学习网站http://www.chinaunix.net/old_jh/23/408225.html [精华] 跟我一起写 Makefilehttp://blog.csdn.net/zyxlinux888/article/details/6420160 ---QT Creator 代码自动补全快捷键和输入法切换快捷键冲突问题解决 http://www.pudn.com/downloads83/ebook/detail320889.html thinkingC++下载网址
阅读全文
posted @ 2014-02-24 08:29
叶城宇
阅读(246)
推荐(0)
摘要:
http://tech.it168.com/KnowledgeBase/Articles/9/c/5/9c569b71826b7c594d54564796f53454.htmhttp://social.msdn.microsoft.com/Search/zh-CN/windows?query=window%20workflow&Refinement=183&emptyWatermark=true&searchButtonTooltip=Search&ac=3http://msdn.microsoft.com/zh-cn/library/ee851766.aspx
阅读全文
posted @ 2013-10-26 19:28
叶城宇
阅读(356)
推荐(0)
摘要:
http://java2s.com/
阅读全文
posted @ 2013-09-21 15:35
叶城宇
阅读(115)
推荐(0)
摘要:
// JavaScript Documentfunction HashTable(){ this._hash={}; this._count=0; /** *添加或者更新key */ this.put=function(key,value){ if(this._hash.hasOwnProperty(key)){ this._hash[key]=value; return true; }else{ this._hash[key]=value; this._count++; return true; } } /** *获取key指定的值 */ this....
阅读全文
posted @ 2013-09-15 09:47
叶城宇
阅读(652)
推荐(0)
摘要:
$(function() { $("#menu a").live("click", function() { var isLeaf = true; if ($(this).parent().parent().hasClass("nav")) { if ($(this).parent().find('ul').hasClass("subnav")) { isLeaf = false; alert("cuole"); } else { isLeaf = true; alert(&qu
阅读全文
posted @ 2013-04-12 17:20
叶城宇
阅读(145)
推荐(0)
摘要:
$(function() { $("#menu li a").click(function() { $("#content").empty(); var navId = $(this).attr("id"); $.getScript("../、、、/、、、/" + navId.substring(4, navId.length) + ".js"); setLocation(navId); }); var location = getLocation(); $("#" + lo
阅读全文
posted @ 2013-04-10 15:43
叶城宇
阅读(149)
推荐(0)