|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序! D( q! U$ ?) u" [( M! Q
其中有一段如下0 U5 Q4 N0 i) s3 h4 g7 ^
ask turtles with [ infected? = true ] 8 _# p& \6 K3 ]1 E- Z$ B& P& C+ `
我原本以为这句会回传『所有』infected? = true 的 turtle/ c" G$ s4 e# {
但看结果似乎不是这样。
4 |! O: l4 r7 B4 @! }
. q3 K1 ?# V: C+ J+ N6 t7 u/ B假设所有符合条件的有 5 笔; P E; W9 | Z5 g5 N/ X I @
有时候回传 1 笔,有时回传 3 笔,是不固定的
) q, g& L% K: b) l( M+ s' _6 b2 p回头查语法定义
: @0 `/ X! b- }7 O% l% Swith 7 [% ]/ s. P6 ~/ n
agentset with [reporter]1 @) I5 Y+ x- r- _. B, C2 L
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.% A7 W) l4 `" J. T
它只说回传 agents satisfying the given condition$ H F8 L+ t' N$ K/ d
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? - m, `& a4 l' T0 B8 }6 p* i
) @! ]5 G5 ^0 P7 ?5 m
想确定一下+ \0 n5 A* f1 L& P. Y
谢谢!
9 f/ q' {8 b! _8 q6 \! w+ {- ~5 { |
|