- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
public static SomeHandler getInstance(int... initValue){
if (initValue == null || initValue.length == 0) {
initValue = new int[1];
initValue[0] = 1;
}
if (initValue != null && initValue.length != 1) {
throw new IllegalArgumentException("You should pass exactly one value");
}
if (instance == null){
instance = new SomeHandler();
}
return instance;
}
myaut 16.05.2014 22:06 # +5
You shall not pass!
P.S. 16000-гет, кстати
3.14159265 16.05.2014 22:25 # +1
Mellon!
guest 20.05.2014 18:25 # +1
bormand 16.05.2014 22:16 # 0
Ну врет же и не краснеет! Судя по строкам 2-5 можно вообще ничего не передавать, один хрен это initValue нигде не используется.