Unchecked cast java.io.Serializable to java.util.ArrayList
请帮忙,我得到以下消息,在我拥有的以下代码中:
listaFinal = (ArrayList<PuntoNota>) getIntent().getSerializableExtra("miLista");
AdapterDatos adapter = new AdapterDatos(this, listaFinal);
蓬托诺塔.java
public class PuntoNota implements Serializable{
private String punto;
private String nota;
public PuntoNota (String punto, String nota){
this.punto = punto;
this.nota = nota;
}
public String getPunto(){
return punto;
}
public String getNota(){
return nota;
}
}
AdapterDatos:
public AdapterDatos(Context context, ArrayList<PuntoNota> puntoNotaList) {
this.context = context;
this.puntoNotaList = puntoNotaList;
}
应用程序运行良好,但我收到以下消息:
Unchecked cast: 'java.io.Serializable' to 'java.util.ArrayList ' less ...(Ctrl + F1)。
关于这个代码: (ArrayList ) getIntent ().getSerializableExtra (“myList”);建议删除或隐藏此消息吗?