function ClassB(sColor, sName){ 
ClassA.call(this,sColor); 
this.name=sName; 
this.sayName=function(){alert(this.name);}; 

其中ClassA.call(this,sColor)中的this,只的是ClassA还是ClassB?为什么