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.
我想通过以下方式传递一个整数数组:
./main --scores 1 49 1 24 4 5 6
我确实发现了一个类似的问题,但它有点老了,希望它现在已经改变了。接受的答案说我应该将它们作为带有分隔符的字符串传递。
你不能。GFlags 不支持复杂的命令行语法,只支持带有原始类型参数的简单标志。您可以将它们作为分隔字符串传递,但如果您真的想完全使用命令行,那么使用为此设计的库可能会更好,例如 GNU getopt。