我的对象列表是从方法调用
填充的List<Object> returnedObjects = ...;
for (Object object : returnedObjects)
{
if(object.getClass().equals(type1Type.class))
{
//Write properties to file for testing
type1Type type1 = (type1Type)object
//write type1.property1 to file
}else if(object.getClass().equals(type2Type.class))
{
//Write properties to file for testing
}
}
有没有办法将整个列表写入文件,以便我可以查看各种对象类型及其属性,而不是遍历对象集合然后写出属性?