|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
4 h4 D1 `3 D! T; Z" i3 u其中有一段如下+ ~. i; D- \5 n8 H- o% ^' Q$ P
ask turtles with [ infected? = true ] " W8 Q8 Y( A) B. [, I( m
我原本以为这句会回传『所有』infected? = true 的 turtle h& N b, y$ C4 t9 B
但看结果似乎不是这样。: M0 ]4 |7 t6 y6 K& X% d( s+ c
/ L1 c9 J$ L9 V% Y# j# P* f
假设所有符合条件的有 5 笔# D( H8 ]5 H& P8 l4 k5 a
有时候回传 1 笔,有时回传 3 笔,是不固定的% k/ U/ V7 [4 E
回头查语法定义
3 \- v* z# Z% iwith 2 l) ?, ?( }5 Z. [) j- Y( s5 j1 s' l
agentset with [reporter]6 G& p2 S" N9 W H8 ]; x
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.
8 Q$ H3 g, J" G9 W! w5 h0 k" w& Y它只说回传 agents satisfying the given condition# X% l/ ?2 z/ z" \& {. l
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
' N( s7 F& l3 T+ k
& k p7 w0 q) F1 J! \* ^想确定一下' z! ^; g5 N! ^* q: T
谢谢!
7 S$ Z+ |: ~+ [4 O5 k) Q |
|