|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
7 x# a7 ]) f0 Y: p, }+ L+ l5 f; c d其中有一段如下8 f% C" }4 t$ p: v* N. B
ask turtles with [ infected? = true ] " w9 H* e2 o4 r1 M
我原本以为这句会回传『所有』infected? = true 的 turtle8 ?$ G# i( m M( f+ r" a
但看结果似乎不是这样。
/ [* g# g& h/ J8 T; P) D% h1 Z
/ ]: v. {- G7 V+ a假设所有符合条件的有 5 笔7 o; R; @9 E$ h( ]: i
有时候回传 1 笔,有时回传 3 笔,是不固定的, k/ } C# g8 ]: a3 {
回头查语法定义
2 n1 z, L, }( m/ dwith + O/ H# T4 ]5 U! }2 G0 s* M6 R5 c
agentset with [reporter]$ j x! P% Z) U, Z5 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.+ V! G) I* G. x5 |, S( g
它只说回传 agents satisfying the given condition! K, T. A2 M5 q/ ~4 E5 Z% N( w
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? * ?/ ~% b% |+ [+ P, v6 q9 @8 E
* H1 H: @% N5 m& U8 s$ p想确定一下
2 @% e* ?4 K$ ?% t/ V8 B* ~谢谢!
/ D. \- l3 E; n |
|