我有一组对象 var Players: [domain] Player,我想以相反的顺序遍历对象。就像是
这有效
for p in Players by {
writeln(p.name);
writeln("I was the %i st player added".format(p.pid)") // pid corresponds to domain index.
p.shoeSize = 1.5*p.shoeSize
}
但!
// poops
for p in Players by -1 {
writeln(p.name);
writeln("I was the %i -to-last player added".format(p.pid)") // pid corresponds to domain index.
p.shoeSize = 1.5*p.shoeSize
}
我想确保鞋码更新。
== 更新 ==
一些附加信息/规格以兑现@bencray 的要求
class Player {
var name: string,
position: string,
pid: int,
shoeSize: int;
}
var playerDom = {1..0},
players: [playerDom] Player;
writeln("I have %i players".format(playerDom.size));
// Now add some players
// Better way to increase as I go along?
playerDom = {1..playerDom.size+1};
players[playerDom.size] = new Player(name="Gretsky", position="Center", shoeSize=10, pid=playerDom.size);
writeln("I have %i players".format(playerDom.size));
playerDom = {1..playerDom.size+1};
players[playerDom.size] = new Player(name="Blake", position="Defenseman", shoeSize=12, pid=playerDom.size);
writeln("I have %i players".format(playerDom.size));
for p in players {
writeln("Player %i has shoeSize %i".format(p.pid, p.shoeSize));
p.shoeSize += 1;
}
for p in players {
writeln("Player NOW %i has shoeSize %i".format(p.pid, p.shoeSize));
}
// poops during compilation
// domobj.chpl:31: error: the first argument of the 'by' operator is not a range
for p in players by -1 {
writeln("Player NOW %i has shoeSize %i".format(p.pid, p.shoeSize));
}