|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
/ b; S1 \6 l! T, G其中有一段如下, Y5 D. Y6 ?% Z& `; R
ask turtles with [ infected? = true ] 9 ^% F A# [5 d- S
我原本以为这句会回传『所有』infected? = true 的 turtle
7 J8 u$ H" i% a$ a0 d2 Z9 b- t但看结果似乎不是这样。- H& {+ q8 B+ x+ x+ x$ F+ y2 C
5 L$ T6 Z+ D: z+ F假设所有符合条件的有 5 笔+ i8 n; J8 ?3 X( M' y3 c% m$ A+ M
有时候回传 1 笔,有时回传 3 笔,是不固定的 X. `. [0 z0 F5 \; F1 W$ |
回头查语法定义
@! Q& R7 J: T1 i. I; g6 e) d/ ewith # ^ h0 j7 f" M) Q" Y
agentset with [reporter]
; Q! z' n2 M9 p2 [4 q; YTakes 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.: _! W/ o8 @ c. x: N& W
它只说回传 agents satisfying the given condition
3 @+ l& l& ]( V) k是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
% D( o9 A) O% Y( A5 o9 b4 j( F. S. z. \/ f6 J% H& U
想确定一下
! K, H2 _* H5 q2 I/ B谢谢!) W# s2 ^: a0 G/ v0 B
|
|