|
|
大家都看过carrydrop的程序吧,里面设置moneyspce时将钱任意分布在空间中
; B; S* ?9 P4 p8 Spublic void spreadMoney(int money){
- B9 O1 F9 M0 o" U1 ^& V% y // Randomly place money in moneySpace" f( L' [$ D6 r
for(int i = 0; i < money; i++){; e' z3 R* N9 I+ l
- V) E% d6 v! `! ~! c+ s // Choose coordinates
- g4 e; V$ b$ K- o5 ~; M int x = (int)(Math.random()*(moneySpace.getSizeX()));, Q/ ]1 y# l$ T( x$ h
int y = (int)(Math.random()*(moneySpace.getSizeY()));
+ s0 V" J- ^& l) h* c+ S' h; D X
- H5 q# y8 l0 n* d6 k0 e1 n) G3 z2 H // Get the value of the object at those coordinates) F& ^$ g$ e9 X) E' Y$ d
int I; ? C3 z* J( u, @, F" B
if(moneySpace.getObjectAt(x,y)!= null){: n0 y) s U# l+ @
I = ((Integer)moneySpace.getObjectAt(x,y)).intValue();' u3 }1 _" ~. R4 ^$ z6 B
}& }2 W5 u9 z& |; f. D. A
else{
! N% f1 [! g) F9 v I = 0;
& c4 N4 ^* Z) v3 V* @, t }, s; ~8 a- `: p9 k: o3 Z* ]
// Replace the Integer object with another one with the new value
1 G( Q& B0 c1 y) n moneySpace.putObjectAt(x,y,new Integer(I + 1)); P7 G' k' r3 v/ N# H# p7 `& D$ p
}" U. J6 v0 S/ z9 \6 }( ~- r l
这里面if(moneySpace.getObjectAt(x,y)!= null){
5 s/ M6 p3 A$ e I = ((Integer)moneySpace.getObjectAt(x,y)).intValue();
# ^- D* ?8 c+ |1 M- f9 F4 f: A }
0 [' G% P+ F0 n. J else{
- u3 l5 Z" Z \8 K# K7 [/ y I = 0;
; S/ t! B; n8 _' ?" ^# B3 o+ C, u是在干什么啊?为什么后面的moneySpace.putObjectAt(x,y,new Integer(I + 1));要用new Integer(I + 1),这都在原来钱的基础上加一啊,我怎么看不出来是随意放置钱财的呢?
/ x) E6 ~5 O, ~9 ~初学者,还请见谅! |
|