标签: c++ windows arguments
所以我一直在做c ++,每当我必须将参数传递给我的命令行工具时,我会使用if语句,并且想知道是否有更好的方法来传递它们。像这样的东西
usage: app [options] options: -h output hello -w output world
所以我想要这样的东西:
$ app -hw
给出这样的输出:
你好世界