- 论坛徽章:
- 1
|
Static Lib 里面的代码:
MsgDefs.h:- #pragma once
- #include <map>
- #include <string>
- typedef std::pair<std::string, int> MsgDefKey;
- typedef std::map<MsgDefKey, std::string> MsgDefs;
- extern MsgDefs gHSVFMsgDefs;
- extern int fake_link_var;
- int fake_link_func();
- #define MSG_DEF(version, msg_id, msg) \
- namespace version##_##msg_id##_def \
- { \
- MsgDefs::key_type key(#version, msg_id); \
- struct DefsAppender \
- { \
- DefsAppender() \
- { \
- gHSVFMsgDefs.insert(MsgDefs::value_type(key, msg)); \
- } \
- } defs_appender; \
- }
复制代码 Version1.cpp:- #include "stdafx.h"
- #include "MsgDefs.h"
- #include <string>
- using namespace std;
- MsgDefs gHSVFMsgDefs;
- const std::string V1_1 = "A1";
- MSG_DEF(V1, 1, V1_1)
复制代码 Version2.cpp:- #include "stdafx.h"
- #include "MsgDefs.h"
- #include <string>
- using namespace std;
- int fake_link_var = 0;
- int fake_link_func()
- {
- return 0;
- }
- const std::string V2_1 = "B1";
- MSG_DEF(V2, 1, V2_1)
复制代码 主程序代码:- // LinkTest.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include "MsgDefs.h"
- #include <iostream>
- int _tmain(int argc, _TCHAR* argv[])
- {
- //fake_link_var();
- //fake_link_var++;
- std::cout << gHSVFMsgDefs.size() << std::endl;
- return 0;
- }
复制代码 问题: 注释掉fake_link_var那两行,输出结果为1. 启用任意一行代码后,结果为2. 求达人赐教更好的解决方案. |
|