|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
0 U. g' W' f" l2 q! ]: v其中有一段如下9 j+ g6 h% O5 L- a7 j" _/ c
ask turtles with [ infected? = true ] * [4 ^5 o6 J& B
我原本以为这句会回传『所有』infected? = true 的 turtle0 h# s; N3 ~, }' \
但看结果似乎不是这样。" ]0 G4 H9 g0 j
2 }3 B8 Z/ n% Z3 ?4 ~假设所有符合条件的有 5 笔: `* [) c. Y- c3 ^+ y
有时候回传 1 笔,有时回传 3 笔,是不固定的" q6 J" a, U5 W$ M. o: T! q
回头查语法定义
( ~: \7 n7 {4 c- n9 Qwith / s) }- W# U( P/ |4 w+ s: G
agentset with [reporter]
' n2 m9 G P$ q3 e& V0 x# g1 _6 tTakes two inputs: on the left, an agentset (usually "turtles" or "patches"). On the right, a boolean reporter. Reports a new agentset containing only those agents that reported true -- in other words, the agents satisfying the given condition.4 W# m3 y, T2 q5 T# p
它只说回传 agents satisfying the given condition# \: w. ~6 X0 ]& R, m: g% a
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? ; A: K) G- U6 x* ]+ l4 Q+ j- S
$ }+ S- B' B1 l4 S
想确定一下
# g5 l0 @4 e( V3 D, U3 d谢谢!
/ V, O L0 U5 b% u% Z- ]4 k |
|