是否可以像拍手的ArgMatches
类型匹配
match matches {
"arg1" => doSomething(),
"arg2" => doSomethingElse(),
// ...
}
或者必须使用文档中描述的语法
if matches.is_present("arg1") {
doSomething();
} else if matches.is_present("arg2") {
doSomethingElse();
}
我发现第二种形式甚至比案例陈述要复杂得多。