|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序5 J3 G6 p0 t' |5 M2 K5 r0 s' ]* Q: _
其中有一段如下
/ ^) A7 [9 s9 \2 S* Fask turtles with [ infected? = true ]
; U) e' X' \7 s- j我原本以为这句会回传『所有』infected? = true 的 turtle' m9 p# a# S5 S4 p `/ e
但看结果似乎不是这样。3 e/ T9 d4 R: |- a
3 Z9 f1 G: s5 Z+ n- F假设所有符合条件的有 5 笔/ E8 U7 B' A4 }4 \
有时候回传 1 笔,有时回传 3 笔,是不固定的3 i7 L0 x8 a# x; z! u/ B
回头查语法定义3 `9 ~- \) C8 b6 b, s9 V9 M4 ?
with 3 ^/ |6 }7 u1 r0 c
agentset with [reporter]' ? B3 U2 U% e- T% R7 ~3 I$ w
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.
2 B8 g) i" i' k它只说回传 agents satisfying the given condition9 M: Z) Y5 ?/ @& [
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? & b. G$ I# J3 f$ C& N6 G
" B9 Z6 H% b3 A% a0 b9 z# M
想确定一下
) Z* V& r9 s: W5 R. B' x谢谢!
# L- `0 s3 u" p3 @8 J, e8 N |
|