|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序' ~4 _+ R) h; q. g; H5 F
其中有一段如下; c' D3 x. ]% b- O# j
ask turtles with [ infected? = true ]
/ y8 Y2 o7 x% `) M) ^我原本以为这句会回传『所有』infected? = true 的 turtle
# s& ?- b& t* n4 \9 P I+ }但看结果似乎不是这样。
* T1 d8 C( U s
: y, K; H/ A. A/ G% C- E假设所有符合条件的有 5 笔
/ Q% H4 O9 } v有时候回传 1 笔,有时回传 3 笔,是不固定的
% Y1 {& o6 g7 y: i% ]9 ]7 W# z回头查语法定义
) h" H) t' Y# h* m4 t' wwith - E: L; ^& _1 \ i8 @
agentset with [reporter]
8 m1 Z. g4 t# M6 K7 R. Y; l9 j% |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.( p; H/ S' r$ I1 J& A4 O- P
它只说回传 agents satisfying the given condition
: R! `- X5 z1 P' K y8 Q( Y是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? ' d+ v4 i0 [& Q {: \5 q0 x& E
/ m6 | L' l3 `想确定一下1 b9 n: E: \9 B6 ^/ g
谢谢!
9 G, [; v& _( X8 j |
|