|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序( f z% ?7 |. p$ F) L/ I$ v/ h, ]8 w
其中有一段如下5 k; p7 o- m7 X' O& L# t
ask turtles with [ infected? = true ]
" \8 T! e+ n1 B我原本以为这句会回传『所有』infected? = true 的 turtle
e; K: I' l ?, d9 ~4 t" G/ M但看结果似乎不是这样。
$ N( R3 K$ F/ B( [- c% _1 Q4 J9 I c: y
假设所有符合条件的有 5 笔
2 P2 s7 Z L& r) t有时候回传 1 笔,有时回传 3 笔,是不固定的
# f0 d# Q# G6 m: L回头查语法定义
' q0 d9 f* a3 S$ }, @+ Cwith + q$ ]8 t! z* [# {) @
agentset with [reporter]
0 x2 e8 |- T k6 J3 |2 o8 R8 }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.$ s+ N- M) I; [1 \+ c
它只说回传 agents satisfying the given condition
% F8 F# T: h: G: k P8 O$ {2 I是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
# ^ ]! \* L) N x E/ Z; T5 k* {, R* ?. M3 `( B$ K: G
想确定一下+ ~- V7 [! J7 X! E2 V
谢谢!
5 y2 S( E3 B! p0 j$ z |
|