afu 发表于 2012-2-16 17:16:13

请教一个循环比较的问题

情况一:
exits=north|east|south|west
tem=north|east
#forall @tem {#if %ismember(@tem,@exits) {#sh ok} {#sh not ok}}
显示结果:ok;ok

情况二:
exits=north|east|south|west
tem=east|north
#forall @tem {#if %ismember(@tem,@exits) {#sh ok} {#sh not ok}}
显示结果:not ok ;not ok

感觉情况二出现not ok的结果不应该,毕竟@tem里两个值都是@exits的内容,%ismember(@tem,@exits)应该为true才是,求解!
另外,如果要妥善解决这种情况,有什么思路和方法,谢谢指教!

北大侠客行MUD,中国最好的MUD

laoxian 发表于 2012-2-16 17:30:51

本帖最后由 laoxian 于 2012-2-16 09:34 AM 编辑

正确使用 forall 的方法:

exits=north|east|south|west
tem=east|north
#forall @tem {#if %ismember(%i,@exits) {#sh ok} {#sh not ok}}

afu 发表于 2012-2-16 17:53:17

非常感谢!yct2.

wzxb 发表于 2012-2-16 19:31:40

没看懂啥意思,靠,高手,都是高手。才发现机器人上我才小学毕业。

when 发表于 2012-2-16 19:33:50

可以把两个%sort() 排序以后再比较,都差不多

poshu 发表于 2012-2-16 20:32:55

zmud撸过

fabby 发表于 2012-2-16 22:52:02

嗯,14也开始学术了

dmmptl 发表于 2012-2-27 21:10:14

高手,都是高手~~
努力学习中,准备手动遍历技术园地。
页: [1]
查看完整版本: 请教一个循环比较的问题