public static <T> T cast(Object o, Class<T> type) {
if (type.isInstance(o)) return type.cast(o);
throw new RuntimeException("can not cast " + o.getClass() + " to '" + type);
}
Java将Object类型的对象转为指定的类型
最新推荐文章于 2024-09-30 17:11:49 发布