0

我正在尝试使用 XCppRefl lib 来实现 C++ 中的反射。http://www.extreme.indiana.edu/reflcpp/。我可以在 linux 中成功安装这个库并运行使用库的源代码给出的测试。

这是我写的代码——

#include <iostream>
using namespace std;

#include <reflcpp/ClassType_tmpl.hpp>
#include <reflcpp/BoundClassType_tmpl.hpp>
#include <reflcpp/Exceptions.hpp>

using namespace reflcpp;

#include "Complex.h"


int main()
{
    //ClassType ct = ClassType::getClass( string("Complex") );
    ////PtrHolder_smptr_t obj = ct.createInstance();
    //assert(ct.name() == "B");
    Complex x;

    int ret;
    Complex a;

    ClassType c = ClassType::getClass( string("Complex") );

    //cout<<"name :: "<<c.name()<<endl;
}

它似乎编译得很好——

   $ g++ -g -I /usr/local/include/reflcpp-0.2/ -L /usr/local/include/reflcpp-0.2/ -lreflcpp  main.cpp  

但是,当我执行可执行文件(a.out)时,我得到一个核心转储

a.out: Type.cpp:87: static const reflcpp::Type_body* reflcpp::Type_body::getType(const std::string&): Assertion `s_class_name_map' failed.
Aborted (core dumped)

有人用过这个库吗?请帮忙。

4

1 回答 1

0

您必须将 main.o 链接到 libreflcpp.a 。编译后使用这个:

g++ -p -pg -o"project_name"  ./A.o ./A_reflection.o ./main.o  /usr/local/lib/libreflcpp.a
于 2013-04-10T23:35:29.747 回答