|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
! V q# d/ y* ~, i; f其中有一段如下2 [6 D4 t* J* W3 X7 M1 A9 X+ o) p& P x
ask turtles with [ infected? = true ]
- R2 l3 I, N4 J$ m9 H. _我原本以为这句会回传『所有』infected? = true 的 turtle
+ ?, z# {. ^7 V/ L3 ~5 _! P5 |但看结果似乎不是这样。
! g4 i1 b# d1 w# W
3 [4 @, c S- ~假设所有符合条件的有 5 笔( W4 Y5 o+ V2 J3 Z
有时候回传 1 笔,有时回传 3 笔,是不固定的
, \) c$ u: e4 E- |7 T; D回头查语法定义
: n3 f% M$ w: _0 Owith
, I! y( |6 X3 xagentset with [reporter]
: N } E* a# iTakes 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.2 N6 _0 q$ K% k/ I; f3 p. O4 V
它只说回传 agents satisfying the given condition- D3 N" o3 m1 Y1 f
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? ( A2 P; K' i& B6 _% S" Q' ^, D
) p8 I2 |# ~" o# Q" U2 n: e8 g
想确定一下
" R6 T: k9 h- I& a' m9 w6 }谢谢!3 P2 Z" i$ K1 m
|
|