class Test
options = Trollop::options do
opt :mode, "Select script mode", :default => 0
opt :net, "Internal IP range", :type => :string
end
@options = options
def test
pp @options
end
end
为什么我打电话时@options
返回?nil
test()
我还尝试@options
在第一次调用 Trollop 时设置为实例。我需要能够将从 Trollop 返回的选项哈希传递到类中的不同方法中。