|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
9 M2 s) j: G2 S其中有一段如下. z6 u& T b2 J0 I% j+ T' Y% Y
ask turtles with [ infected? = true ] " u6 X4 C& h* H; ]: j- s9 p- l5 s
我原本以为这句会回传『所有』infected? = true 的 turtle
" M$ j* a+ A5 E4 l" b$ O- T/ B! `; e: [但看结果似乎不是这样。
7 t7 r, ^; z$ C0 s( Q8 w9 P$ S: z0 k# ^5 c/ A3 R8 X8 Y* n( L2 W
假设所有符合条件的有 5 笔. Y! s) e0 @+ v+ J' N1 ^
有时候回传 1 笔,有时回传 3 笔,是不固定的
; d v" E$ |, C8 ?$ o回头查语法定义
+ O8 s5 @ Y8 L* b, ]) nwith
0 X. \# P$ p9 m' I& M2 eagentset with [reporter], h0 h" i$ A+ N% _1 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.
; D, M$ Z3 N' s& M5 v3 w8 V它只说回传 agents satisfying the given condition& i6 ?% R0 m# o, }( ? w' m
是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ? 4 L3 L& b9 a8 }0 h. | y
5 b# O4 A4 x/ h' G7 {
想确定一下
2 g/ C) ?+ t9 f h+ l( W9 `谢谢!' q" T2 q- q2 s) v7 W& G# | }- d& ?" Y
|
|