|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序0 C b! w8 h+ a2 Q
其中有一段如下# [6 [* w7 P( B$ S* H5 J
ask turtles with [ infected? = true ]
' _. B: m2 T) g% ~5 |$ x我原本以为这句会回传『所有』infected? = true 的 turtle, y; Z6 a* T$ O2 Y
但看结果似乎不是这样。
: b% A- K3 q* P, C9 E5 \2 y- N6 @ A9 M# k. o( K$ \' Q
假设所有符合条件的有 5 笔
7 @4 V1 l7 @+ Y' a3 \9 j有时候回传 1 笔,有时回传 3 笔,是不固定的" o9 n# d/ J4 }. O7 Y
回头查语法定义
3 M+ R* ~9 f, n& l: Twith 6 b4 R! Q* _4 c4 e$ y. u0 |
agentset with [reporter]3 F r; b. _. D8 \" }( \9 `" |9 [0 `. b
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.
$ f2 ]$ n& W/ @! i它只说回传 agents satisfying the given condition
$ p+ ~8 w$ T" R9 s* U/ A- t是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
P: h: [- H7 \+ g8 {9 o! [) i; q! {6 v0 Y \8 q& z
想确定一下
5 I! m6 ?* l F5 [" Z谢谢!
% U- R. l6 X. r+ L2 k) [. \' r# A0 n |
|