本人目前正在重新学一遍Ruby语言,以期能达到一定的熟练程度。看到了块的部分,想起了C、C++、C#中无比亲切的函数指针。这东西在实现访问者模式时有很大用处。在《Programming Ruby》的HTML版中最后的部分有一节对访问者模式的实现方法的介绍。我还没有看到那里。这里说一下我的方法。
def traverse(visit_proc, proc)
i = 0
while (i < 10)
visit_proc.call(i, i + 1)
proc.call
i += 1
end
end
def visit_node(i, j)
print("#{i}, #{j}")
puts
end
def print_sharp
puts("###################")
end
traverse(Proc.new { |i, j| visit_node(i, j) }, Proc.new { print_sharp })
i = 0
while (i < 10)
visit_proc.call(i, i + 1)
proc.call
i += 1
end
end
def visit_node(i, j)
print("#{i}, #{j}")
puts
end
def print_sharp
puts("###################")
end
traverse(Proc.new { |i, j| visit_node(i, j) }, Proc.new { print_sharp })
这样就可以达到类似于函数指针的效果了。有点类似于C#中的代理。