gpt4 book ai didi

java - 如果它在注释或字符串中,知道如何 "not"计算集合中的关键字吗?

转载 作者:行者123 更新时间:2023-11-29 03:35:05 26 4
gpt4 key购买 nike

我需要让这个程序计算 .java 源代码文件中的关键字(它会这样做),但它还需要忽略任何注释或字符串中的关键字。任何帮助将不胜感激。!!!

import java.util.*;

import java.io.*;

public class CountKeywords {

public static void main(String[] args) throws Exception {

Scanner input = new Scanner(System.in);
System.out.print("Enter a Java source file: ");
String filename = input.nextLine();

File file = new File(filename);
if (file.exists()) {
System.out.println("The number of keywords in " + filename
+ " is " + countKeywords(file));
}
else {
System.out.println("File " + filename + " does not exist");
}
}

public static int countKeywords(File file) throws Exception {

// Array of all Java keywords + true, false and null

String[] keywordString = {"abstract", "assert", "boolean",
"break", "byte", "case", "catch", "char", "class", "const",
"continue", "default", "do", "double", "else", "enum",
"extends", "for", "final", "finally", "float", "goto",
"if", "implements", "import", "instanceof", "int",
"interface", "long", "native", "new", "package", "private",
"protected", "public", "return", "short", "static",
"strictfp", "super", "switch", "synchronized", "this",
"throw", "throws", "transient", "try", "void", "volatile",
"while", "true", "false", "null"};

Set<String> keywordSet =
new HashSet<String>(Arrays.asList(keywordString));
int count = 0;

Scanner input = new Scanner(file);

while (input.hasNext()) {
String word = input.next();
if (keywordSet.contains(word))
count++;
}

return count;
}
}

最佳答案

回答

不要重新发明轮子。尝试使用众多 Java 代码解析器中的一种。喜欢https://code.google.com/p/javaparser/

否则你需要实现一个完整的解析器。

为什么?

除非您理解解析,否则您会遗漏一些东西。例如,让我们看看这个算法,看看它是否有效。

  1. 忽略“和”之间的所有代码。
  2. 忽略/*和*/之间的所有代码
  3. 忽略//之后一行的所有代码

看起来很简单?然后你会遇到“你好\”世界。好的好的。我们将考虑转义字符串。

将1改为忽略"和"之间的所有代码,但忽略字符串中的\"。

好的,这可以工作...直到“你好\\”;私有(private)字符串......好吧,我们只需要考虑......

这就是您推出自己的解析器时发生的情况。您通常通过反复试验来完成它,而不是查看整个解析语法并正确地完成它。使用来自已阅读该语言的完整 BNF 并构建了经过良好测试的解析器的人的解析器。从长远来看,它会拯救你。

关于java - 如果它在注释或字符串中,知道如何 "not"计算集合中的关键字吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16046008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com