3
Why this statement seems neither method nor attribute?
static{
}
this is the original code
private static MessageDigest md5 = null;
static {
try {
md5 = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException ex) {
ex.printStackTrace();
}
}
Prof. couldn’t explain it.