|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序5 e. |7 k9 Y% Z) O Q' ]" \! @; u; e
其中有一段如下9 {' s- o5 R7 \# m1 {" J- L
ask turtles with [ infected? = true ] * D+ S- I' E) Y0 Y
我原本以为这句会回传『所有』infected? = true 的 turtle
9 `0 w7 Q/ u, _- z, V2 [ `" t但看结果似乎不是这样。
' h0 D: }; s% C7 A- ^% }7 A
3 j7 J0 P4 i% _4 |. F5 R假设所有符合条件的有 5 笔
% V3 P3 V, I3 q4 N+ b# d( m' J% T有时候回传 1 笔,有时回传 3 笔,是不固定的
- l+ h4 E" A, Y) m回头查语法定义
* V/ p [% u. gwith
0 w* b4 |! k; V* u/ ]! V0 m' fagentset with [reporter], E( x7 y9 e' }! ^
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.1 N9 S. g) c) \/ `: K/ Z* ?
它只说回传 agents satisfying the given condition( x4 p8 P& b$ P" \. U7 Q
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? " ]: q# R8 L) q, ?# q
, A/ S+ q5 U+ W) V
想确定一下6 r, W' C c% m! c% K: U
谢谢!! d7 }( j! T+ z6 e: E1 p* U
|
|