标签:this 问题解决 check ret equal obj class his lse
原本代码如下:
Vertex<L> v = (Vertex<L>) obj; if(!v.getMyName().equals(this.vertexName)) return false;
会有警告。修改后在强制类型转换部分加入通配符’?’延迟类型决定,最后是
var v = (Vertex<?>) obj; if(!v.getMyName().equals(this.vertexName)) return false;
问题解决。
Type safety: Unchecked cast from Object to...
标签:this 问题解决 check ret equal obj class his lse
原文地址:https://www.cnblogs.com/BAKA-HIT/p/14854331.html