|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序: [2 o) Y% T% L& T
其中有一段如下
1 y5 U; l) [- R5 U" Dask turtles with [ infected? = true ]
( k0 c9 G$ K( R我原本以为这句会回传『所有』infected? = true 的 turtle! `& ]" E* U$ b7 q3 z
但看结果似乎不是这样。
! D' R6 e6 R% B6 Y2 w3 g9 @, ^$ s- _! ]" c! ?4 [
假设所有符合条件的有 5 笔. C) M+ f- r7 ^# }+ s$ P+ H
有时候回传 1 笔,有时回传 3 笔,是不固定的/ V5 q7 v" Z; O4 d
回头查语法定义" h% h* n4 L3 i, h
with , a, E' o1 o) R& D- L* K4 y
agentset with [reporter]
# X4 Y5 ?% a; |$ b _2 C* ?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.
/ l- c) d1 B, Q它只说回传 agents satisfying the given condition) s0 d9 i, }! C; ?3 n. M
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? : Q D; _% G! F7 p. K% _
8 A) e8 q- N& q想确定一下
% i. X- D: j# v- s谢谢!
7 ^9 Y0 } _: F; B; ?0 L |
|