|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序2 J" `+ ^+ j, M6 H( D) h! y) w
其中有一段如下& T& _9 c6 ?" o! ~3 e9 Z" y& p
ask turtles with [ infected? = true ]
7 e1 Y0 j9 \3 p# f2 ? ^我原本以为这句会回传『所有』infected? = true 的 turtle' C( E3 }6 ~0 p- m" Y* F
但看结果似乎不是这样。0 |; g& f( Q9 a' ?" `& L
5 G5 I, Q4 ]6 v1 C' @- C
假设所有符合条件的有 5 笔
. H4 o$ Z& C% K- y有时候回传 1 笔,有时回传 3 笔,是不固定的1 g1 _' k$ M+ c9 |! }7 i! P0 x8 V
回头查语法定义
9 a1 U. q1 O/ T# ^ Rwith ' C) {% m. G; a; m" g
agentset with [reporter]2 C. B" W: M+ I- X4 f. A* S
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.
0 a( C1 u, k) h e3 I, v它只说回传 agents satisfying the given condition4 o3 K4 K7 M9 G: b
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
; `) H3 q8 @$ ?/ p) \
" a0 b$ f! Z0 r3 R想确定一下
4 |+ v* v V6 n& O; V谢谢!
+ U$ q# m/ D8 W' | |
|