|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
! b' [# j. f3 a* A) X, c6 ]; z其中有一段如下, u' O3 p) i2 B. ~ {
ask turtles with [ infected? = true ]
5 M. W }4 _# g4 d; `' d8 x& y6 w我原本以为这句会回传『所有』infected? = true 的 turtle6 ~: I/ b% c- ] u9 ]3 @1 }- k
但看结果似乎不是这样。
0 m# e. F( z. W/ ~" }) X% g$ \; K. _) u. q) @0 h
假设所有符合条件的有 5 笔
7 o8 f8 B& L. ~3 N/ t. l0 J$ u; Y有时候回传 1 笔,有时回传 3 笔,是不固定的
8 m5 X9 G& e5 A/ L) L7 q回头查语法定义7 u% Y1 [9 X# _4 O& L" b7 F% `
with
% t: @, v* o" u; Iagentset with [reporter]+ e' d2 A) C2 ^$ l1 r
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.' Y& i/ Z! t7 [' j3 j
它只说回传 agents satisfying the given condition
7 n" d9 f3 a5 y" I# N% `6 w/ E是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
+ v5 o/ p/ ?, r; V/ D t
8 |' V/ A& U# s2 ^3 v想确定一下8 Y: a- G5 W! F# {8 y* L6 R
谢谢!
. q. X. f# r' ^7 r |
|