• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 








每日三省吾身
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页

2011年8月24日

Javascript中创建对象类的两种常规较好的方式
摘要: 1.混合的构造函数/原型方式function Car(sColor, iDoors, iMpg){ this.color = sColor; this.doors = iDoors; this.mpg = iMpg; this.drivers = new Array("Mike", "Sue");}Car.prototype.showColor = function(){ alert(this.color);};测试:var oCar1 = new Car("red", 4, 23);var oCar2 = new Car(" 阅读全文
posted @ 2011-08-24 11:18 渔樵耕读2017 阅读(125) 评论(0) 推荐(0)
 
JavaScript对象继承的实现
摘要: 1.综合对象冒充(属性)、原型链继承(对象)方法:function ClassA(sColor){ this.color = sColor;}ClassA.prototype.sayColor = function(){ alert(this.color);};function ClassB(sColor, sName){ ClassA.call(this, sColor); this.name = sName;}ClassB.prototype = new ClassA();ClassB.prototype.sayName = function(){ alert(this.name);}// 阅读全文
posted @ 2011-08-24 11:16 渔樵耕读2017 阅读(242) 评论(0) 推荐(0)
 

2011年8月15日

Castle资料
摘要: 1. Castle 开发系列文章(06年的文章,但是cnblogs上一直没有比该系列更全的):http://www.cnblogs.com/Terrylee/archive/2006/04/28/387503.html2. 官网:http://www.castleproject.org/ 阅读全文
posted @ 2011-08-15 15:14 渔樵耕读2017 阅读(252) 评论(0) 推荐(0)
 

2011年8月9日

NHibernate资料
摘要: 1. 官网:http://nhforge.org/2. 下载资源:http://sourceforge.net/projects/nhibernate/files/NHibernate/3. 园友学习系列:http://www.cnblogs.com/GoodHelper/tag/NHibernate/ 阅读全文
posted @ 2011-08-09 11:16 渔樵耕读2017 阅读(201) 评论(0) 推荐(0)
 
Redis资料
摘要: 1. 归档Redis在Windows,linux平台下的安装配置: http://www.cnblogs.com/daizhj/articles/1956681.html2. 使用ServiceStackRedis链接Redis简介: http://www.cnblogs.com/daizhj/archive/2011/02/17/1956860.html高级:Redis源码解析(1)——源码目录介绍: http://www.cnblogs.com/liping13599168/archive/2011/04/12/2013094.html在多台服务器上简单实现Redis的数据主从复制: ht 阅读全文
posted @ 2011-08-09 10:40 渔樵耕读2017 阅读(352) 评论(0) 推荐(0)
 

2011年8月8日

Hash算法的一点资料
摘要: http://blog.csdn.net/maddemon/article/details/6637725http://www.cnblogs.com/abatei/archive/2009/06/23/1509790.html 阅读全文
posted @ 2011-08-08 17:56 渔樵耕读2017 阅读(170) 评论(0) 推荐(0)
 
VS2010 UI Auto Test的一些资料
摘要: http://social.msdn.microsoft.com/Search/en-US?query=vs%202010%20coded%20ui%20test&ac=3http://blogs.msdn.com/b/mathew_aniyan/archive/2009/01/21/tutorial-how-to-create-a-coded-ui-test.aspxhttp://blogs.msdn.com/b/amit_chatterjee/archive/2009/03/14/coded-ui-test.aspxhttp://www.cnblogs.com/realdigit/ 阅读全文
posted @ 2011-08-08 11:28 渔樵耕读2017 阅读(209) 评论(0) 推荐(0)
 

2011年8月5日

Domain Driven Design的一些学习资料
摘要: 1. 书籍:领域驱动设计精简版Domain-driven design:领域驱动设计:软件核心复杂性应对之道Applying Domain-Driven Design and Patterns (领域驱动设计和模式应用,领域驱动设计与模式实战)企业应用架构模式2. cnblogs:http://www.cnblogs.com/virusswb/archive/2011/04/07/2007711.htmlhttp://www.cnblogs.com/daxnet/category/252402.htmlhttp://www.cnblogs.com/netfocus/archive/2011/0 阅读全文
posted @ 2011-08-05 11:28 渔樵耕读2017 阅读(211) 评论(0) 推荐(0)
 

2011年8月3日

Difference between LINQ to SQL and the Entity Framework
摘要: I was browsing through the usual newsgroups I visit and came up with this post about LINQ to SQL vs EDM and thought I should share it here.LINQ to SQL and the Entity Framework have a lot in common, but each have features targeting different scenarios.LINQ to SQL has features targeting "Rapid De 阅读全文
posted @ 2011-08-03 11:07 渔樵耕读2017 阅读(327) 评论(0) 推荐(0)
 
闭包,懂不懂由你,反正我是懂了
摘要: 越来越觉得国内没有教书育人的氛围,为了弄懂JS的闭包,我使出了我英语四级吃奶的劲去google上搜寻着有关闭包的解释,当我看到stackoverflow上这一篇解答,我脑中就出现了一句话:就是这货没跑了!不才译文见下,见笑了。Peter Mortensen问:就像老Albert所说的,“如果你不能向一个六岁的孩子解释清楚,那么其实你自己根本就没弄懂。”好吧,我试着向一个27岁的朋友就是JS闭包(JavaScript closure)却彻底失败了。你们会怎么把它解释给一个充满好奇心的六岁孩子听呢?注:我看过StackOverflow上给出的示例,但根本没用。Ali的回答:当function里嵌套 阅读全文
posted @ 2011-08-03 10:45 渔樵耕读2017 阅读(139) 评论(0) 推荐(0)
 
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页