|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
$ X% ~) E4 O( A! v: C其中有一段如下1 U* }# Z* E) j1 `& o9 W5 i' }# P
ask turtles with [ infected? = true ] T V- D% p! m
我原本以为这句会回传『所有』infected? = true 的 turtle
1 d w1 w3 {0 C5 }, Q. T7 O) D但看结果似乎不是这样。" e9 k1 b! U; l# I% W
4 O2 u: d) Y( o
假设所有符合条件的有 5 笔7 w$ X& {( ~, Y$ [" \
有时候回传 1 笔,有时回传 3 笔,是不固定的2 a- I# Q4 b' `! M6 u: z1 Y
回头查语法定义
( m0 t+ q1 q% r/ H6 Swith - v0 J \& c8 E4 n0 K
agentset with [reporter]
; _& D$ [/ }9 O Q" f+ z- OTakes 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. g, { G/ x( C5 @! O
它只说回传 agents satisfying the given condition
8 k2 F3 y$ H2 v是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
, j: x& m4 c/ P* U# c. O# _9 t/ i% i* D( T3 a
想确定一下- w# Q i$ I0 d2 P' e4 M4 X; P5 F
谢谢!
% K( x# Y8 [5 C3 L |
|