设为首页收藏本站

最大的系统仿真与系统优化公益交流社区

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 3584|回复: 0

[求助] 应该是个简单的问题

[复制链接]
发表于 2009-10-12 09:42:47 | 显示全部楼层 |阅读模式
大家都看过carrydrop的程序吧,里面设置moneyspce时将钱任意分布在空间中; Y4 j$ ~; b4 H
public void spreadMoney(int money){( b% m* B3 h2 G4 d/ z) k& w" S
    // Randomly place money in moneySpace
8 A! V" I* Z# ~# K5 F- x: z    for(int i = 0; i < money; i++){( d7 H! o$ C; k) R& G

% N" E+ L1 s0 U% F( ?      // Choose coordinates5 i, ~" K7 n+ n5 v8 |! f
      int x = (int)(Math.random()*(moneySpace.getSizeX()));: {! s. g( a9 G4 e' I: e
      int y = (int)(Math.random()*(moneySpace.getSizeY()));
: {# {) V1 z+ L% e9 o! Y! v4 N7 U/ E4 _, ?" k0 v
      // Get the value of the object at those coordinates* ]9 Y7 ?6 }2 V( E0 g
      int I;+ V! C* Q. g9 x8 l
      if(moneySpace.getObjectAt(x,y)!= null){
7 F" w4 o2 g. |7 C        I = ((Integer)moneySpace.getObjectAt(x,y)).intValue();# c" ?9 X' g  @7 p2 d+ l
      }
) r6 s, T, l9 B; |$ F/ ^      else{& o  I) \" c6 i8 ^/ p  r/ z6 U5 V
        I = 0;
5 a7 M% Z8 a. Q6 T& l1 M; G      }! q- b+ t. ~, e, V1 p! A3 N
      // Replace the Integer object with another one with the new value
& ]5 a6 v# @- ]; a4 g      moneySpace.putObjectAt(x,y,new Integer(I + 1));
. M" P& N+ @; i5 i( y$ d0 L2 z    }
: P3 J! z6 q* w2 H& n
这里面if(moneySpace.getObjectAt(x,y)!= null){5 a; m* S. Z, a' d5 J& f2 {
        I = ((Integer)moneySpace.getObjectAt(x,y)).intValue();
& D, S$ N& g" W% A4 a      }
- E& x: _9 u; T. Z% |      else{
- d$ P0 k4 J7 G# `! |9 `        I = 0;

5 E7 {; Y* I% I' s% }% Y, x- U是在干什么啊?为什么后面的moneySpace.putObjectAt(x,y,new Integer(I + 1));要用new Integer(I + 1),这都在原来钱的基础上加一啊,我怎么看不出来是随意放置钱财的呢?
% ^$ N8 t9 v" D& F9 T% l初学者,还请见谅!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|SimulWay 道于仿真   

GMT+8, 2025-4-4 12:01 , Processed in 0.012629 second(s), 14 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表