我最近在学习 Java,并试图使用类。但我无法初始化数组对象
class Tablet
{
String S = null;
void set(String a)
{
S = a;
}
}
public class questions
{
public static void main(String args[])
{
Tablet[] T = new Tablet[6];
for(int i = 0;i<6;i++)
{
T[i].set("111"); // I get null pointer exception here
}
//solution(T,6);
}
}
谁能告诉我哪里出错了?