定义
1 2 3 4 5 6 |
DEFINE_bool: boolean DEFINE_int32: 32-bit integer DEFINE_int64: 64-bit integer DEFINE_uint64: unsigned 64-bit integer DEFINE_double: double DEFINE_string: C++string |
使用
- 引入gflags文件夹
- 定义下面的宏
1 2 3 4 5 6 7 8 9 10 11 |
#pragma once #include <gflags/gflags.h> namespace hk0910 { DEFINE_string(input, "-input", "the input dir path."); DEFINE_string(output, "-output", "the output dir path."); DEFINE_int32(prepare, 1, "a flag."); #define PARAM_COUNT 4 } // namespace hk |
- 使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#include <iostream> #include "macro.h" int main(int argc, char** argv) { if (argc != PARAM_COUNT) { return 0; } google::ParseCommandLineFlags(&argc, &argv, false); std::cout << hk0910::FLAGS_input << std::endl; std::cout << hk0910::FLAGS_output<< std::endl; // the file path // the flag if (hk0910::FLAGS_prepare == 0) { } else if (hk0910::FLAGS_prepare == 1) { } else { return 0; } // google::ShutDownCommandLineFlags(); return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ C++14_第二篇06/21
- ♥ C++20_第一篇06/30
- ♥ Spdlog记述:二07/09
- ♥ C++_成员访问权限06/20
- ♥ macOs 解析mach-o05/11
- ♥ Soui五05/30