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.
我在代码中有以下几行:
interface Options{ @Option(longName = "fileName"); String name; }
我不明白这里的@Option 是什么意思?一般来说,Java 中的“@”字符是什么意思?
JewelCLI使用这些注释来表示代理接口。这里有一个使用示例。