我有这个保留字布尔格式的代码:
private boolean isIdent(String t) {
if (equals(t, "final") || equals(t, "int") || equals(t, "while")
|| equals(t, "if") || equals(t, "else") || equals(t, "print")) return false;
if (t!=null && t.length() > 0 && Character.isLetter(t.charAt(0))) return true;
else return false;
}
我需要将其转换为 HashSet 格式,但不确定如何处理。非常感激任何的帮助。