|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序- ?: N& u7 Y f2 \
其中有一段如下$ z! Z0 U- w6 o5 r8 K/ r/ R3 ]
ask turtles with [ infected? = true ]
4 I# F6 B5 `. C0 F1 ?, r; S* b, E7 {我原本以为这句会回传『所有』infected? = true 的 turtle9 c7 k; Y# N' `% x+ x" Z
但看结果似乎不是这样。
. q+ _2 v3 b, `! ~( }3 Y
5 L# I7 ]+ S: G假设所有符合条件的有 5 笔- J: n. y- _ _" Q, j e- i6 X
有时候回传 1 笔,有时回传 3 笔,是不固定的6 R1 k; M. x$ g0 i9 {2 e
回头查语法定义
: J0 K8 w8 L# ^with : V1 ]8 l s8 Q) V( X2 {3 ?
agentset with [reporter]! @, j3 _8 ]0 x1 h5 }2 c/ 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.+ u# D1 i, G2 V, ^
它只说回传 agents satisfying the given condition \' l- _; ]& \. {; q6 F0 {5 a8 ]
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? 1 E3 v3 `9 ~5 X! B* P) M g. T2 _3 @
+ b/ m5 a$ e/ t% Q- t* q想确定一下
6 N( A2 g5 g: v5 i谢谢!
' R7 }" Y: u! i. U9 G9 j# N |
|