|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序# s- U/ z2 y% D: T% W1 H
其中有一段如下 J$ Y3 ^3 R$ B& h
ask turtles with [ infected? = true ]
4 M) c) L' e! M7 _0 \; g3 ~我原本以为这句会回传『所有』infected? = true 的 turtle
) C" y/ e/ S5 S- b; Y& T( e但看结果似乎不是这样。
: ~1 }: N1 O' I2 b4 I% W, Z) y! a& K" c
假设所有符合条件的有 5 笔7 b0 F- q% W" ]1 q0 x. m
有时候回传 1 笔,有时回传 3 笔,是不固定的
6 q* T( u) Z' Q4 T- x* P. n% \回头查语法定义# C& ]4 l1 ~/ v
with
% d1 A7 C s& G: S" nagentset with [reporter] D$ A; X2 @1 {+ N) o# C2 X
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.) X- K; j% C, x O; F' }5 N
它只说回传 agents satisfying the given condition
$ y" V) ]7 c N! o2 K- _2 T是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
7 N: o& |/ D! E J: C( x1 @' G$ n$ q! R" J& o! O
想确定一下3 C( V n- k2 W2 U/ l
谢谢!
) U4 k) a* z; ]. n7 X K6 c4 g |
|