Java中如何一次性将53个关键字存入hashset中
时间: 2024-02-12 09:08:58 浏览: 70
可以使用Collections.addAll()方法将关键字存入HashSet中。具体实现如下:
```java
import java.util.*;
public class Main {
public static void main(String[] args) {
String[] keywords = {"abstract", "assert", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue", "default", "do", "double", "else", "enum", "extends", "false", "final", "finally", "float", "for", "goto", "if", "implements", "import", "instanceof", "int", "interface", "long", "native", "new", "null", "package", "private", "protected", "public", "return", "short", "static", "strictfp", "super", "switch", "synchronized", "this", "throw", "throws", "transient", "true", "try", "void", "volatile", "while"};
Set<String> keywordSet = new HashSet<String>();
Collections.addAll(keywordSet, keywords);
System.out.println(keywordSet);
}
}
```
这样就可以将所有Java的关键字存入HashSet中了。
阅读全文