名称空间“命名空间”中没有名为“name”的成员

时间:2014-11-09 03:09:59

标签: c++ namespaces

我不能为我的生活弄清楚为什么会产生这个错误,因为我很确定语法是正确的(显然我错了!)。所以我想我会看到这里是否有人可以为我指出。

的main.cpp

#include "Object.h"

int main(){
    out = json::readJSON(data_dir + "a2-empty_array_with_empty_object.json", e, debug);
}

Object.h

namespace json{
template<typename T>
    std::string readJSON(std::string jsonFile, T& object, bool debug = false, char delimiter = ',') {}
}

我基本上得到了这个错误,当明确该函数在命名空间中时。为什么它将该功能称为成员?也许这里还有别的东西......

错误:

a2main.cpp:66:21: error: no member named 'readJSON' in namespace 'json'
        out = json::readJSON(data_dir + "a2-cartoons.json", c, debug, '|');

1 个答案:

答案 0 :(得分:2)

您可能没有正确包含头文件。

以下代码编译(使用clang和gcc)并运行正常

#include <string>

namespace json
{

    template<typename T>
    std::string readJSON(std::string jsonFile, T& object, bool debug = false, char delimiter = ',') 
    {
       return "Hello"; //This function should return a string
    }

}

int main()
{
    std::string data_dir = "test-";
    int e = 3;
    bool debug = false;
    std::string out = json::readJSON(data_dir + "a2-empty_array_with_empty_object.json", e, debug);
    return 0;
}

我希望这会有所帮助。

相关问题