它有一个黄色下划线的'class',并说它是一个警告,说'Class是原始类型。对泛型类的引用应该参数化为“
Class ourClass = Class.forName("com.thenewboston.jack." + cheese);
我已经尝试了所有快速修复和所有事情。我不知道该怎么办。任何人都可以帮忙告诉我该怎么做吗?
以下是代码的其余部分以及代码的放置位置:
package com.thenewboston.jack;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class Menu extends ListActivity{
String classes[] = {"Startingpoint", "Example1", "Example2", "Example3"
, "Example4", "Example5", "Example6", "Example7", "Example7", "Example7"};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(Menu.this, android.R.layout.simple_expandable_list_item_1, classes));
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
String cheese = classes[position];
try{
Class ourClass = Class.forName("com.thenewboston.jack." + cheese);
Intent ourIntent = new Intent(Menu.this, ourClass);
startActivity(ourIntent);
}catch(ClassNotFoundException e){
e.printStackTrace();
}
}
}
答案 0 :(得分:2)
像这样修改
Class<Activity> ourClass = Class.forName("com.thenewboston.jack." + cheese);
或使用以下方法简单地压制此警告:
@SuppressWarnings("rawtypes")
正在产生警告的行上方。