function P(name){
this.name=name;
this.p1=function(){
alert('親コンストラクター');
}
これを返します;
}
function C(name,id){
//this.method=P;
//this.method(name); //1 番目のメソッド
//P.call(this,name); //2 番目のメソッド
P.apply(this,new Array(name));//3 番目のメソッド
this.id=id;
this.dis=function(){
alert(this.name);
}
}
function dis(){
alert(this.name);
}
function t(){
var cc=new C('N','Id');
cc.dis();
cc.p1();
}