|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
; T: `9 Z2 p# u+ O) G其中有一段如下
0 s% H1 |0 k; \* ?6 h. I: Qask turtles with [ infected? = true ] . s- G7 a' d5 ^8 S8 R! s8 E
我原本以为这句会回传『所有』infected? = true 的 turtle
- {( {% w" J1 n# q5 N但看结果似乎不是这样。
7 N n" d; Y. ~4 O4 P0 O4 b3 S% y% s
假设所有符合条件的有 5 笔
, R; x+ u# V: l# w- @6 i5 v有时候回传 1 笔,有时回传 3 笔,是不固定的% ~0 D+ L0 I e, U- }7 r
回头查语法定义+ n H7 I8 P8 u1 d8 [0 [
with 5 z4 p6 w6 }) k5 E! t
agentset with [reporter]
- l( e1 n' o0 K/ q9 r8 e- n6 b. 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.( ]; h! C% Q/ G, u1 |+ T. s
它只说回传 agents satisfying the given condition& P* o- q' H& y& X0 u
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
: Q/ J f8 y+ q s, n8 T' \$ ^4 P$ V J. v* g3 u
想确定一下
% X2 \6 r- J5 N$ T1 t谢谢!# O( A0 _" }4 T) @
|
|