假设我有这段代码:
function Graph() {
this.vertices = [];
this.edges = [];
}
Graph.prototype = {
addVertex: function(v){
this.vertices.push(v);
}
};
是否可以在addVertex
中添加function Graph()
属性名称,从而完全消除此代码的第二部分(从Graph.prototype =
开始)?我试过这个但是它没有用:
function Graph() {
this.vertices = [];
this.edges = [];
addVertex = function(v){
this.vertices.push(v);
};
}
答案 0 :(得分:0)
是的,您可以通过以下方式执行此操作:
st-sort