我是Ruby的新手并试图理解这段代码。我想知道在'def initialize'中定义'links'(@links = {})的位置。有一个同名的功能。 'def initialize'中的'链接'指向函数吗?那么@links = {}怎么办?
#---
# Excerpted from "Mazes for Programmers",
# published by The Pragmatic Bookshelf.
# Copyrights apply to this code. It may not be used to create training material,
# courses, books, articles, and the like. Contact us if you are in doubt.
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/jbmaze for more book information.
#---
require 'distances'
class Cell
attr_reader :row, :column
attr_accessor :north, :south, :east, :west
def initialize(row, column)
@row, @column = row, column
@links = {}
end
def link(cell, bidi=true)
@links[cell] = true
cell.link(self, false) if bidi
self
end
def unlink(cell, bidi=true)
@links.delete(cell)
cell.unlink(self, false) if bidi
self
end
def links
@links.keys
end
def linked?(cell)
@links.key?(cell)
end
def neighbors
list = []
list << north if north
list << south if south
list << east if east
list << west if west
list
end
def distances
distances = Distances.new(self)
frontier = [ self ]
while frontier.any?
new_frontier = []
frontier.each do |cell|
cell.links.each do |linked|
next if distances[linked]
distances[linked] = distances[cell] + 1
new_frontier << linked
end
end
frontier = new_frontier
end
distances
end
end
答案 0 :(得分:2)
@links = {}
是一个实例变量,可供类中的所有方法使用。您可以稍后在链接方法中访问它。虽然具有相同的名称,但一个是对象,一个是方法。