|
|
新手发问超简单问题,目前还处于研读范例码的阶段,边测边看结果来理解程序
7 L* P e2 c8 i/ d% q b/ H其中有一段如下3 `4 X0 o1 H; B. i, H; X
ask turtles with [ infected? = true ] 8 @. r |' I/ h4 u+ ]3 K( j
我原本以为这句会回传『所有』infected? = true 的 turtle, y+ C; L4 H) ?4 Z
但看结果似乎不是这样。
, C6 }% w3 L9 L, ?8 }% Q
4 L* B2 R3 L- O) i$ k假设所有符合条件的有 5 笔
. P6 w. G# V! G- W0 Q/ r" d( r! b3 d有时候回传 1 笔,有时回传 3 笔,是不固定的- ?- m# m2 s. r! P, C+ m
回头查语法定义
% L( X& m& ?3 F. j1 P, n. H/ @% qwith 5 }7 i: P; `4 q% b$ |) ^' I# x. ^. P3 `
agentset with [reporter]- H7 J8 \ Z! \* d K. }$ 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.
; t$ x7 `: ]% P它只说回传 agents satisfying the given condition
! g# ~& F- R3 a0 D( E/ `是否 with 回传的是『符合条件』的数据,而不是『所有符合条件』的数据 ?
- o; A, W* J" c3 {( H
* I' T$ K3 K! u9 \& y想确定一下
) ^$ t6 Q4 w/ P; b% S9 }# B5 E2 ]谢谢!
$ i/ W; @* U. d- E: P |
|