如何在C ++类中调用静态库函数? [重复]

问题描述 投票:2回答:1

我有一个类,其头文件定义为:

namespace mip {
    class CustomStatic {
        public:
            static const char* GetVersion();
    };
}

并且类文件定义为:

#include "CustomStatic.h"

namespace mip {
    static const char* GetVersion() {
        return "hello";
    }
}

我从我的主类访问这个静态函数

#include "CustomStatic.h"

#include <iostream>

using std::cout;
using mip::CustomStatic;

int main() {
    const char *msg = mip::CustomStatic::GetVersion();
    cout << "Version " << msg << "\n";
}

当我尝试使用以下方式编译它时 -

g++ -std=c++11 -I CustomStatic.h  MainApp.cpp CustomStatic.cpp

我收到的错误是:

架构x86_64的未定义符号: “mip :: CustomStatic :: GetVersion()”,引自:MainApp-feb286.o中的_main:ld:未找到架构x86_64 clang的符号:错误:链接器命令失败,退出代码为1(使用-v查看调用)

c++ static static-functions
1个回答
3
投票

您的静态函数未在cpp文件中正确实现...

你需要做点什么

//.h
namespace mip
{
    class CustomStatic
    {
         public:
            static const char* GetVersion();
    };
}


//.cpp -> note that no static keyword is required...
namespace mip
{
    const char* CustomStatic::GetVersion()
    {
        return "hello";
    }
}

//use
int main(int argc, char *argv[])
{
    const char* msg{mip::CustomStatic::GetVersion()};
    cout << "Version " << msg << "\n";
}
© www.soinside.com 2019 - 2024. All rights reserved.