|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
; K/ y! f& _8 b其中有一段如下
, {4 o) \ T4 N; nask turtles with [ infected? = true ] $ q+ T% d$ T" f5 n+ i% g
我原本以为这句会回传『所有』infected? = true 的 turtle0 H; n, K0 @1 G( n2 B$ a$ [
但看结果似乎不是这样。
9 V' b9 H, M0 Q, R# K
) _0 P V* u: Q5 s/ t假设所有符合条件的有 5 笔
, q6 e+ s) ^* R9 d2 f- }有时候回传 1 笔,有时回传 3 笔,是不固定的
4 c J) Y& Z$ H" ?1 }: [/ X回头查语法定义
' {" I0 o8 D% }9 rwith
, @) j. ]8 [2 ]9 h, A) P5 Q, K6 ?' nagentset with [reporter]
5 B% q: z! B$ rTakes 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.
: z$ H+ A, q2 |+ N& m( b( o) O2 I它只说回传 agents satisfying the given condition1 ?! O' U: }4 @5 {
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? . k3 v4 G9 s) v
h$ x, ^4 c( D* |想确定一下
2 g& c, K1 r" P$ z$ j9 p9 X谢谢!. W- M# x7 b/ h- Z
|
|