2010年1月18日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/*********************求1+2+3+4+......................+100的和*******************************/declare@sumsmallint,@ismallintset@i=1set@sum=0label:if(@i<=100)beginset@sum=@sum+@iset@i=@i+1gotolabele 阅读全文
posted @ 2010-01-18 16:48 钱途无梁 阅读(2890) 评论(0) 推荐(0) 编辑
摘要: http://stauren.net/log/i3sfwwvma.html 阅读全文
posted @ 2010-01-18 11:32 钱途无梁 阅读(407) 评论(0) 推荐(0) 编辑
摘要: * ==================================================== ** 1. 概述 : * ==================================================== * $.plugin – 是 jQuery 用来动态加载 js 和 css 文件的插件。主要用来减少网络流量以及相对的加强代码的安全性。 ... 阅读全文
posted @ 2010-01-18 11:02 钱途无梁 阅读(5558) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<scripttype="text/javascript"src="jquery.min.js"><scripttype="text/javascript">functiond... 阅读全文
posted @ 2010-01-18 10:55 钱途无梁 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 一. 类与结构的差别   1.值类型与引用类型  结构是值类型:值类型在堆栈上分配地址,所有的基类型都是结构类型,例如:int 对应System.int32 结构,string 对应 system.string 结构 ,通过使用结构可以创建更多的值类型类是引用类型:引用类型在堆上分配地址堆栈的执行效率要比堆的执行效率高,可是堆栈的资源有限,不适合处理大的逻辑复杂的对象。所以结构处理作为基类型对待的... 阅读全文
posted @ 2010-01-18 00:16 钱途无梁 阅读(286) 评论(0) 推荐(0) 编辑
摘要: http://www.hemin.cn/blog/?p=37 阅读全文
posted @ 2010-01-18 00:07 钱途无梁 阅读(230) 评论(0) 推荐(0) 编辑