//下面的代码来自hashmap,事实上直接使用getProperty也不会受到权限限制 static { String altThreshold = java.security.AccessController.doPrivileged( new sun.security.action.GetPropertyAction( "jdk.map.althashing.threshold"));
int threshold;
try {
threshold = (null != altThreshold)
? Integer.parseInt(altThreshold)
: ALTERNATIVE_HASHING_THRESHOLD_DEFAULT;
// disable alternative hashing if -1
if (threshold == -1) {
threshold = Integer.MAX_VALUE;
}
if (threshold < 0) {
throw new IllegalArgumentException("value must be positive integer.");
}
} catch(IllegalArgumentException failed) {
throw new Error("Illegal value for 'jdk.map.althashing.threshold'", failed);
}
ALTERNATIVE_HASHING_THRESHOLD = threshold;
}
做的动作是一样的。GetPropertyAction 内部就是 调用了 System.getProperty。通过Access控制器来调用,顾名思义就是加了一层校验调用代码是否有权限访问对应属性。
PS: 知道个意思就好了,不要太纠结,把时间放到更意义的学习上。现在这种写法很少见了。 public class GetPropertyAction implements PrivilegedAction { private String theProp; private String defaultVal;
public GetPropertyAction(String var1) { this.theProp = var1; }
public GetPropertyAction(String var1, String var2) { this.theProp = var1; this.defaultVal = var2; }
public String run() { String var1 = System.getProperty(this.theProp); return var1 == null?this.defaultVal:var1; }
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。