|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
H( _" b) W6 [其中有一段如下
6 I1 D# S" Z/ S& I$ r) Gask turtles with [ infected? = true ]
" u* o. A8 [) B9 j. V+ a4 D: I我原本以为这句会回传『所有』infected? = true 的 turtle
$ x$ N0 L- b* D' s+ \) e( u/ N但看结果似乎不是这样。
9 Y& i2 l2 U# E3 B1 [9 a* n
* y/ y I }. O6 I6 m* |6 A& ^6 R假设所有符合条件的有 5 笔
; J% _; k+ B* O& z- C9 R有时候回传 1 笔,有时回传 3 笔,是不固定的, r; Z) ^' [( m
回头查语法定义
# L+ E7 k. r0 G8 P# |. Q* S8 w! ~with , j2 |. t y* j/ Z6 F3 e" u- e
agentset with [reporter]" I; | }0 \# l; v: W# @, G
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.
& F& m/ f; V, c$ M d1 |它只说回传 agents satisfying the given condition6 M( x$ v( @6 U8 S( ?# ^" B3 C- h
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
# y: y% w% S* B6 P3 f9 K- e6 \ y6 e' p( E a
想确定一下& Z. Y y2 E% H+ g% p1 e
谢谢!
6 x0 |' H& G7 ^0 q |
|