在 Ruby 中,getoptlong 会破坏性地解析 ARGV。 有没有解决的办法?
我需要多次调用 getoptlong,但第一次之后 ARGV 为空。
I need to invoke getoptlong multiple times, but after the first time ARGV is empty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在第一次调用之前捕获参数,完成后将它们放回原处。 不过,听起来你正在做一些奇怪的事情。
编辑:(展开)
这里有很多复制和粘贴的内容。 我认为这有助于澄清:
Capture the args before the first call, put them back when you're done. Sounds like you're doing something kind of weird, though.
Edit: (expanded)
There's a lot of copying and pasting in here. I consider that helping with clarity: