|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
1 G# {- ~. H) _0 \其中有一段如下& U4 K8 Z$ W4 Y" d0 t6 ~) Y6 z) ?6 Y x
ask turtles with [ infected? = true ] 8 c! w7 [$ x0 h! p& g
我原本以为这句会回传『所有』infected? = true 的 turtle3 X0 P) v: I: X
但看结果似乎不是这样。
8 d7 E1 `8 m9 w C. }! _
! D- `2 h7 e' m假设所有符合条件的有 5 笔
6 b& ^( c) y7 A" ]0 y7 g有时候回传 1 笔,有时回传 3 笔,是不固定的0 s( g9 {; R% L- l2 s$ \
回头查语法定义
( q4 d# B$ H: n; [) N. ^with
/ t& s$ q1 S! @1 {$ @. iagentset with [reporter]
+ T' D, T' j D- NTakes 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.
6 J4 }" g: |5 R它只说回传 agents satisfying the given condition
2 g6 f. M& V- p. [$ `* Z+ c! a是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
0 l5 j3 R( m: J. S1 v# n7 Z9 t
" c: l) O- e* ~' N2 M# }0 j% Q8 _想确定一下
3 P& Q* }% w, @0 V+ z- {/ g. d3 ~谢谢!
) I* \/ Y6 \8 R8 O p+ D |
|