|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序( \2 z5 i) G! I! N
其中有一段如下- q. R8 L" m0 M0 U; o1 Y8 M/ W5 H/ E% f
ask turtles with [ infected? = true ] 4 S+ _3 d* r& }3 p( p/ h0 X% _8 b
我原本以为这句会回传『所有』infected? = true 的 turtle' }' h9 n3 V) F, W! m' N
但看结果似乎不是这样。
' ^5 d8 w3 ]$ j( L- X5 F4 {* f) a/ D+ x) S( z Q% n! V
假设所有符合条件的有 5 笔
% `1 _0 V f7 G, B有时候回传 1 笔,有时回传 3 笔,是不固定的- c7 M" P8 S& w! J/ t; b1 h+ z
回头查语法定义0 O' D$ V/ m; X ?5 e Y& P
with
. V# Z3 C! b! Z4 f& `& R1 u" J Dagentset with [reporter]6 y( G; f( Y; I% D9 U* g. m
Takes 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.
7 I0 @8 a6 V$ e0 U7 x9 I% M0 a0 S( u它只说回传 agents satisfying the given condition! k0 N/ s! y6 b7 S2 s. h4 t
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? . A- i& a0 @; g1 M/ d' u
0 P/ p( o- J9 N9 j7 ~
想确定一下) ^/ {+ ]; B9 D- Z
谢谢!
7 }& b/ y3 @5 T |
|