|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
x1 i; C& S3 T& G% K其中有一段如下" i; s8 i, r5 R" z7 f
ask turtles with [ infected? = true ] 5 k: v* E) }4 ]3 u
我原本以为这句会回传『所有』infected? = true 的 turtle
/ m7 ` f4 J! V: y但看结果似乎不是这样。
. L; ?* N! z$ [9 F( N
; K* Q8 p) [7 y假设所有符合条件的有 5 笔
! c, [3 W7 q% s' ]有时候回传 1 笔,有时回传 3 笔,是不固定的0 X3 ?5 w( f! c
回头查语法定义! f) h0 J, T) `5 Y% O9 P& y! P3 d- W0 h' g
with * C5 N2 z" I# n$ @; R! |, `
agentset with [reporter]- U! o4 p2 j" ?& P
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.
" A7 \9 B; n6 ?5 N1 z% O: w" P它只说回传 agents satisfying the given condition7 ]9 t/ ]0 s- _. @2 {6 P
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
$ y0 f) W$ z) p+ y! W) B; j! I9 l0 Y1 i4 {7 F9 M' ^
想确定一下
7 U( J9 O4 c P! E! b0 S谢谢!5 Z' M7 O# m$ V
|
|