|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
: I2 u5 k; y" i" r其中有一段如下1 t1 M: b6 g2 R! b: R, ?
ask turtles with [ infected? = true ] ( O, ]! \# l7 F! h: k8 Y
我原本以为这句会回传『所有』infected? = true 的 turtle
; z8 q+ b( {2 X3 {但看结果似乎不是这样。
) u6 b0 P i- A0 ^# Z2 p5 u1 ^6 B% m0 ^
假设所有符合条件的有 5 笔
2 h3 \- U5 \* V3 `3 u/ y/ g0 v有时候回传 1 笔,有时回传 3 笔,是不固定的* f4 m3 r9 h3 ^- V$ J
回头查语法定义
/ u8 h+ h6 y' C" k) e# Kwith * _- { q! Z2 i* o! ?/ M
agentset with [reporter]) Z1 P1 {+ g( M2 o& [! j5 _+ ]
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./ r# q1 ?$ i8 b$ `) {5 |
它只说回传 agents satisfying the given condition! A- ?, n e! J: v) x* H, w$ U
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
; I8 D. T+ K5 i7 F" r4 h
- r1 t" ]% ^0 ~2 n4 \想确定一下
/ A; ?# L7 U; e! n3 W5 d谢谢!2 l0 n6 W$ K0 ?7 c( E7 [/ O/ z
|
|