我想让程序有两个选项,起始地址和结束地址,以便程序选项如下:
--start_address 0xc0000000 --end_address 0xffffffff
options_description可以采用这样的十六进制输入吗?我是否必须将输入视为字符串并将其转换为十六进制值.我现在有这个:
po::options_description desc("Allowed options"); desc.add_options() ("help,h","display this help message") ("path,p",po::value<std::string>(),"Executable file path") ("start_address,s","Start address") ("end_address,e","End address") ;
boost :: lexical_cast可以做这样的转换吗?
解决方法
好.刚发现我可以使用options_description输入选项,然后使用std :: stringstream解析选项以转换为十六进制数,如下所示
boost::uint32_t start_address; std::stringstream interpreter; interpreter << std::hex << vm["start_address"].as<std::string>(); interpreter >> start_address;