Last active
November 30, 2015 02:13
-
-
Save hengyunabc/c906aa26c213cc74c5dc to your computer and use it in GitHub Desktop.
可以在匿名类里用{}来进行一些初始化工作,这样子可以避免要写一个构造函数。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scheduleJobManager.addScheduleJob(new ScheduleJobSupport(){ | |
{ | |
this.setInterval(intervalx); | |
} | |
@Override | |
public boolean permitAdd() { | |
return false; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
同样的技巧可以用来初始化一个Map。