|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序5 H+ X8 F4 _, O8 R
其中有一段如下) G0 E- x* _! J6 b/ }' c2 n
ask turtles with [ infected? = true ] ( h( O( P% g& o8 Z
我原本以为这句会回传『所有』infected? = true 的 turtle1 X: `$ \; D$ ]+ S8 l
但看结果似乎不是这样。
( S! S L) i O4 k! {
& h! L/ P- I4 h: f. d9 b: X* H& ?假设所有符合条件的有 5 笔
- ?5 c r! X: i( c8 P有时候回传 1 笔,有时回传 3 笔,是不固定的
2 ]5 p! r0 W* J; D6 a回头查语法定义$ O- g- L+ V5 N' @% R5 p
with 5 A0 l6 M8 b: T, e8 D
agentset with [reporter]
! j- c7 m# o0 H6 l5 L' P# GTakes 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.% n' r1 [6 ~- ^1 W; q0 g q
它只说回传 agents satisfying the given condition
% B9 \7 j- }8 K5 v+ x6 [( Q% Y( z2 P是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
' n3 R5 S3 h' w; l; s& S |
; x! j/ o2 ]' {' m8 M# ?" N想确定一下
% n# T) t) P k' O谢谢!
! X: G a8 B H- }$ c4 g |
|