C++ 读取配置文件_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > C++ 读取配置文件

C++ 读取配置文件

 2012/6/11 0:14:22  amornio19840908  程序员俱乐部  我要评论(0)
  • 摘要:C++读取配置文件项目路径/workspace/community_service项目目录-src--config.h--config.cpp--community_cpp.cpp--systemInit.h--systemInit.cpp-thrift-thrift_cppcommunity_service.confcommunity_service.conf中定义了一些需要配置的字段,例如:communityPort=10020systemInit.h和systemInit.cpp,1
  • 标签:配置文件 文件 c++ 配置
C++ 读取配置文件
项目路径 /workspace/community_service

项目目录
-src
--config.h
--config.cpp
--community_cpp.cpp
--systemInit.h
--systemInit.cpp
-thrift
-thrift_cpp
community_service.conf


community_service.conf 中定义了一些需要配置的字段,例如:communityPort=10020

systemInit.h和systemInit.cpp,
1)定义了在c++中,对应于community_service.conf所用到的字段;
2) 将community_service.conf加载到内存
const char ConfigFile[]= "community_service.conf";
	Config configSettings(ConfigFile);
        // 读取community_service.conf中的字段communityPort。
	communityPort = configSettings.Read("communityPort", 0);


读取配置文件的核心是config.h和config.cpp,它们提供读取配置文件的方法。




上一篇: C++ 日志配置 下一篇: C++中的随机数
发表评论
用户名: 匿名