想像してみましょう:
public class Test
{
class A
{
private String name = "toto";
public String getId()
{
return name;
}
}
class B
{
int id = 99;
public String getId()
{
return String.valueOf(id);
}
}
public static void main(String[] args)
{
Test t = new Test();
A a = t.new A();
B b = t.new B();
List<A> list = new ArrayList<A>();
list.add(a);
list.add(a);
list.add(a);
List<?> genericList = list;
for(Object obj : genericList)
{
System.out.println(obj.getId());
}
}
}
コンパイル時に System.out.println にエラーがあります
The method getId() is undefined for the type Object
わかりました、それは正常です。
しかし、それを機能させるにはどうすればよいですか?のようなものを持つことは可能ですか?
((obj.getClass().getSimpleName())obj).getId()