嘿,我正在写一个小对象:
function Point(x, y) {
this.x = x;
this.y = y;
this.angle = Math.sqrt(x * x + y * y);
this.radius = Math.atan(y / x);
};
Point.prototype = {
constructor: Point,
calculateRadius: function(x, y) {
return Math.sqrt(x * x + y * y);
},
calculateAngle: function(x, y) {
return Math.atan(y / x);
},
cartToRad: function(x, y) {
this.radius = calculateRadius(x, y);
this.angle = calculateAngle(x, y);
}
};
var coords = new Point(0, 0);
coords.cartToRad(5, 0.523);
这会引发错误:
ReferenceError: calculateRadius is not defined.
是否可以在其他原型函数中使用原型函数?
答案 0 :(得分:2)
您需要将它们作为this
的属性引用,就像任何其他属性一样。