文章列表
本人初学Javascript,感觉与java的继承相比,JavaScript的继承很有意思。
function Person(me){
me.name="yjd";
me.age=23;
me.myConstructor=Person;
return me;
}
function New(C){
var me;
if(C.myPrototype==undefined || C==C.myPrototype.constructor){
me=Object();
}else{
me=New(C.myPrototy ...