private static final boolean enableFast = false;// ...if (enableFast) { // This is removed at compile time}
private static final boolean enableFast = "true".equals(System.getProperty("fast"));
然后,JIT编译器将评估任何依赖enableFast的条件。此开销可忽略不计。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)