Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我听说 Java 字节码实际上不支持任何类型的未命名类。javac 如何将未命名的类转换为已命名的类?
它合成了表单的名称EnclosingClass$n,其中“n”是 中匿名类的计数器EnclosingClass。因为$不鼓励使用 in 标识符,所以这些名称不应与任何用户指定的名称冲突。
EnclosingClass$n
EnclosingClass
$