我正在尝试以字符串的形式为初学者初始化一个具有整数 1 到 n 的向量。
这是我对向量的声明。
Vector<String> candidatesSet,frequentItemSet,mFCandidatesSet,mFSet = new <String>Vector();
我用来初始化的循环是
for(int i=0; i<crows; i++)
{
candidatesSet.add(Integer.toString(i+1));
}
这里我们得到运行时变量 crows 的值。
但它在我向对象添加字符串的行中抛出了 NullpointerException。
我尝试将向量初始化为空
candidatesSet = null;
但它没有工作