在這種方法中:「」在一行代碼的末尾做了什麼?
def look_deep (action, max_item_depth = 9, max_aspect_depth = 9)
self.class.numbering_reset
r = look_deeper \
[] , #no context yet
{ #deep
:root => id,
:row => 0 ,
:columns => {
:names => Array.new,
:cells => Array.new
} ,
:action => action ,
:debug_log => ''
} ,
max_item_depth , #optional
max_aspect_depth , #optional
0 #item_depth
@toy_debug = self.class.debug_map r
r
end
我不明白這是什麼意思:
r = look_deeper \
有人可以幫助我理解?
只是一個線路分配器 – shime
你需要問問它是誰寫的,要使用註釋。正確的評論。 – iain
感謝您的幫助:) – akdev