在继承中常会出现两个问题: 父类的属性变成了子类的原型
构造器指向混乱寄生组合式继承解决了这样的问题: 属性继承到属性 原型继承到原型 构造器指向明确// 父类var Super = function(name) {
this.name = name; this.friends = ["...
分类:
编程语言 时间:
2014-05-30 04:10:48
阅读次数:
209
Kitahara Haruki has bought n apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends.
Each apple weights 100 grams or 200 grams. Of course Kitahara Haru...
分类:
其他好文 时间:
2014-05-25 09:01:36
阅读次数:
174
Rescue
Problem Description
Angel was caught by the MOLIGPY! He was put in prison by Moligpy. The prison is described as a N * M (N, M
Angel's friends want to save Angel. Their task is: a...
分类:
其他好文 时间:
2014-05-23 00:06:37
阅读次数:
482
AsI’mworkingonaproductthatwillmakeheavyuseofencryption,I’vefoundmyselftryingtoexplainpublic-keycryptographytofriendsmorethanoncelately.Tomysurprise,anythingrelatedI’vecomeacrossonlinemakesitlookmorecomplicatedthanitshould.Butit’snot.Firstofall,let’ssee..
分类:
其他好文 时间:
2014-05-20 21:05:11
阅读次数:
430
题目描述Nancy, the leader of a group, always
participates in many different kinds of competitions. One day, she decides to
choose some of her group member...
分类:
其他好文 时间:
2014-05-08 12:24:14
阅读次数:
353
基于原型的创建虽然可以有效地完成封装,但是依然存在如下问题:
1.无法通过构造函数来设置属性值
2.当属性中有引用类型变量时,可能存在变量值重复
function Person(){
}
Person.prototype = {
constructor:Person,
name:"Leon",
age:30,
friends:["Ada","Chris"],...
分类:
Web程序 时间:
2014-05-04 09:15:22
阅读次数:
328
1。国际化 如添加朋友Friends是英文,可以找着相关的类,并在国际化配置文件中添加key
在项目中全局搜索“Friends”,将得到的结果集全部展开,找到这两个文件: 在国际化配置文件spark_i18n_zh_CN.properties 中增加
custum.friends=朋友 修...
分类:
其他好文 时间:
2014-05-01 19:52:51
阅读次数:
470
迪米特法则(Law of Demeter)又叫作最少知识原则(Least Knowledge Principle 简写LKP),就是说一个对象应当对其他对象有尽可能少的了解,不和陌生人说话。英文简写为: LoD.
迪米特法则可以简单说成:talk only to your immediate friends。 对于面向OOD来说,又被解释为下面几种方式:一个软件实体应当尽可能少的与其他实...
分类:
其他好文 时间:
2014-04-27 18:00:46
阅读次数:
534