我正在制作一个 Class 对象以开始一项新活动。但问题是当我输入
Class ourclass = new Class.__
它不识别类,我不能使用超类“类”的方法。它说类是原始类型。我应该将它分配给什么类型,因为我想使用“forName()”方法来传递一个类名。这是代码
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
try
{
Class ourclass =Class.__ // The suggestions for static functions doesn't popup, and I get errors
//Intent myintent = new Intent();
}
catch(ClassNotFoundException e)
{
e.printStackTrace();
}
}
}
问候。