ConfigUtils.java 文件源码

java
阅读 23 收藏 0 点赞 0 评论 0

项目:ProjectAres 作者:
public static double getPercentage(ConfigurationSection config, String key, double def) {
    double percent = config.getDouble(key, def);
    if(percent < 0 || percent > 1) {
        throw new IllegalArgumentException("Config value " + key + ": percentage must be between 0 and 1");
    }
    return percent;
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号