|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
. }0 v8 X _' a {% h+ E其中有一段如下# h" |# d, Y t; q$ s2 m
ask turtles with [ infected? = true ] . v x2 J. t4 y' @+ p' d# ^* _
我原本以为这句会回传『所有』infected? = true 的 turtle
: t7 h0 w% Z9 Y) h: a; N% |. |但看结果似乎不是这样。
9 R4 Q+ _- M# ]1 i. e' Y# Z
. w( U! m# E$ u2 R0 F( y: y& J假设所有符合条件的有 5 笔" G1 X H. o5 o4 a( _- N5 h& S
有时候回传 1 笔,有时回传 3 笔,是不固定的
$ O U) i3 E% F回头查语法定义: F6 Y& R! b$ [' g% ~6 X. n4 K
with 4 u: C8 {$ |+ ]
agentset with [reporter]
" j+ W, }4 l* {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.
1 W4 f5 [; D A5 y) {# y R它只说回传 agents satisfying the given condition3 l; c* d2 ^+ d$ Y2 M! |& J7 l9 ^
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? 9 P8 r* s5 I6 V$ t
4 D% T& H0 C5 s+ Q9 v1 m- ^# q想确定一下
% ^. U, [% W# J9 e! ^谢谢!2 f$ ~1 [9 c8 k) Z( H \
|
|