|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序6 R9 C P, k2 |2 x, p
其中有一段如下. h* _+ `4 ^5 \: v$ F
ask turtles with [ infected? = true ] # f8 a# D) c1 s- ]
我原本以为这句会回传『所有』infected? = true 的 turtle' P m- o7 e3 u- B' l7 p4 G
但看结果似乎不是这样。
2 z! `" u2 d( K/ q! ~; A1 d# _7 v L% Y; p$ [2 B
假设所有符合条件的有 5 笔7 l, x0 f) Y( l* n) A
有时候回传 1 笔,有时回传 3 笔,是不固定的0 X2 t' l) ^9 d+ E( r3 C* _" \
回头查语法定义
2 S6 x0 t4 c3 j7 Fwith
3 N; k& ~0 @% u- M) [, Nagentset with [reporter]
1 h4 ^+ n4 w/ y+ Q/ PTakes 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.
! V1 X- G8 s, }. }它只说回传 agents satisfying the given condition9 D% p* N- U7 r* W4 X
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? 1 q& s+ _ c/ z4 V% m0 ]7 z6 _1 T
k8 Y. [: e; ?4 e( g% v l
想确定一下
0 Q: Z! G* w" F" T, P谢谢!
4 j! w6 n+ ~0 L* K2 j- b |
|