gpt4 book ai didi

javascript - 在javascript中,我应该向对象或对象原型(prototype)添加函数

转载 作者:搜寻专家 更新时间:2023-11-01 04:15:27 26 4
gpt4 key购买 nike

<分区>

我现在正在用 javascript 构建一个国际象棋游戏,并且不确定使用继承的正确方法。在代码的一部分,我有一个具有不同类型扩展的棋子对象,例如一个骑士(因为它是最短的)它看起来像这样(没有注释):

block

/************* piece ********************/
function Piece(square, color) {
this.square = square;
this.color = color;
}

Piece.prototype.get_path = function(to) {
return null;
};

Piece.prototype.get_capture_path = function(to) {
return this.get_path(to);
};

Piece.prototype.isAt= function(square) {
return (this.square.equals(square));
};

/************* KNIGHT *****************/
Knight.prototype = Object.create(Piece.prototype);
Knight.prototype.constructor = Knight;
function Knight(square, color) {
Piece.call(this, square, color);

this.type = KNIGHT;
}

Knight.prototype.get_path = function(to) {
var h_movement = Math.abs(this.square.file - to.file);
var v_movement = Math.abs(this.square.rank - to.rank);

if ((h_movement === 2 && v_movement === 1) || (h_movement === 1 && v_movement === 2)) {
return [to];
}
return null;
};

它工作正常,正如您所期望的那样,根据 chrome 的 console.log 输出,该对象如下所示:

Knight {square: Square, color: "w", type: "N"}
color: "w"
square: Square
type: "N"
__proto__: Knight
constructor: Knight(square, color)
get_path: (to)
__proto__: Piece

现在在不同的代码文件中,我定义了一个方形对象,如下所示:

正方形

function Square(file, rank) {
this.file = file;
this.rank = rank;

this.equals = function(other) {
return (this.file === other.file && this.rank === other.rank);
};

this.toString = function() {
return String(file) + ' ' + String(rank);
};

this.getSquareAtOffset = function(file, rank) {
file = Number(file)? file : 0;
rank = Number(rank)? rank : 0;
return new Square(this.file + file, this.rank + rank);
}
};

这也可以正常工作,并且正如您可能期望的那样,该对象的控制台日志如下:

Square {file: 1, rank: 1}
equals: (other)
file: 1
getSquareAtOffset: (file, rank)
rank: 1
toString: ()
__proto__: Square

这也很好用。所以我的问题是,哪种方法在哪种情况下更好?这两个对象之间有什么区别,一个将其功能作为属性,另一个将其作为原型(prototype)的属性?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com