0

嗨,我不确定该怎么做,但这是我得到的代码

// splits 1 to 3
int check;
for (int i = 0; i < 100; i++)
{
    check = alM1((rand.next(20))+1);//error
    if (!(alM3.Contains(check)))
        alM3.Add(check);
    if (alM3.Length == 10)
        break;
}
// removes 3 from 1
for (int i = 0; i < 10; i++)
{
    if (alM1.Contains(alM3(i)))  //error
        alM1.Remove(alM3(i));    //error
}

错误消息说 ArrayList 是一个变量,但它像方法一样使用。我怎样才能写出它来产生我想要的东西。提前致谢

4

1 回答 1

1

要访问列表的条目,您需要使用方括号表示法。例如:

check = alM1[(rand.next(20))+1];

和:

if (alM1.Contains(alM3[i]))   
于 2013-07-29T11:21:46.577 回答