|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序4 L* H& ~# c0 l3 I5 _
其中有一段如下
; B P6 ^# x. e: E( }ask turtles with [ infected? = true ] 3 B: [& A4 H0 N. Z0 [1 A0 G% Z
我原本以为这句会回传『所有』infected? = true 的 turtle
* F. t* }5 D. [- S' b但看结果似乎不是这样。
" ]0 E& D; j: W
) m6 L- \1 n. f/ ]假设所有符合条件的有 5 笔
* g+ J! }8 m- L/ z+ P& |有时候回传 1 笔,有时回传 3 笔,是不固定的
: x/ z/ `: v N回头查语法定义
" k2 q! w% ?+ P- n" \$ `with
" Z w0 l; X2 k) [7 Gagentset with [reporter]
# t, `; u! O9 i8 _ A* ZTakes 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.9 p6 v7 z7 _, D3 W! L/ o Y$ d
它只说回传 agents satisfying the given condition6 K1 |; P" K' [$ }! f7 C
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? # O g/ h& p, R% c, o: {3 ~
" i7 S+ c( D; P) j, `7 _' ~& W
想确定一下
: \" H5 l$ {* y2 @谢谢!! V# E# | x' V+ ]1 c$ ?
|
|