bean 常用操作

Map浅拷贝

static final Map shallowCopy(final Map source) throws Exception {
    final Map newMap = source.getClass().newInstance();
    newMap.putAll(source);
    return newMap;
}

你可能感兴趣的:(bean 常用操作)