org.apache.lucene.document.IntPoint$1是哪个类?



当我观察到一件奇怪的事情时,我出于其他目的被编码了以下行。q的类是classorg.apache.lucene.document.IntPoint$1,但我真的在文档中找不到它。

Query q = IntPoint.newExactQuery("year", 2147483647);
System.out.println(q.getClass()); # this line prints out "class org.apache.lucene.document.IntPoint$1"

它是在 IntPoint.java 第 199 行的 newRangeQuery 中定义的匿名类(因为 newExactQuery 是使用它实现的(。

最新更新