|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序2 [* ^- W2 g- K v7 h0 E$ E6 t' \) b
其中有一段如下8 m5 S7 T& L* u$ N% |
ask turtles with [ infected? = true ] 5 e+ `. Q$ n& U9 B
我原本以为这句会回传『所有』infected? = true 的 turtle/ v+ ?1 y/ l: `# s
但看结果似乎不是这样。
$ j: X' T& s# z6 B+ C; [( M
2 w2 h) h" p3 B$ M4 e+ G假设所有符合条件的有 5 笔* }4 s g$ k: D3 |5 N8 v- o% u
有时候回传 1 笔,有时回传 3 笔,是不固定的+ w5 X# I$ ?& r* ~5 _8 D- B
回头查语法定义
+ @: @8 m% c! f, }, J Gwith
% \- N! j; h9 q* p7 q0 gagentset with [reporter]
, b8 ~! @2 X, [% M! VTakes 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.. [ X1 l) W, y9 w* {: P# d. K- i
它只说回传 agents satisfying the given condition& ]! Z: [; |4 V9 h
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? ' j' q" F5 v( C. U1 }3 K! _6 v
+ c: k! @. @: R1 J+ \想确定一下( q5 X4 U, v) ~( E( A
谢谢!
2 [3 ^) q* o. n8 [6 }* Y |
|