这是在优胜美地操作系统上,clion的xcode 7.2发出叮当声。
我正在从postgresql db迭代查询并将结果添加到json对象中。

for (pqxx::result::const_iterator c = R.begin(); c != R.end(); ++c) {
    participants["participants"] += { \
        {"id", c[0].as<std::string>()},
        {"location", c[1].as<std::string>()},
        {"racename", c[2].as<std::string>()},
        {"racestart_at", c[3].as<std::string>()},
        {"ended_at", static_cast<bool>(c[9].size()) ? c[9].as<std::string>() : ""},
        {"racetime", static_cast<bool>(c[10].size()) ? c[10].as<std::string>() : ""}
    };
}

有些列具有空值,因此我在三元运算符中测试是否将该强制转换为bool,并返回结果或空字符串。为了使它更简洁,我尝试用http://www.cprogramming.com/tutorial/templated_functions.html中的示例添加一个模板函数,得到了如下结果:
template <class T>
std::string column_content(T a) {
    return static_cast<bool>(a.size()) ? a.as<std::string>() : "";
}

当我试图编译程序时,我得到错误:
Database.cpp:9:44: error: use 'template' keyword to treat 'as' as a dependent template name
return static_cast<bool>(a.size()) ? a.as<std::string>() : "";
                                       ^
                                       template

我查看了Cast Chars To Int in Template Functionhttp://www.cplusplus.com/doc/oldtutorial/templates/以及来自google的其他建议,但看起来我使用了错误的语法,但我无法识别。
如果我可以使用一个添加到json的模板函数
{"start_at", column_content(c[8])}

当做
克劳斯

最佳答案

我暂时把它改成了一个函数。根据http://pqxx.org/devprojects/libpqxx/doc/2.6.9/html/Reference/a00259.html#2a9d36599b217ebfde2cac4633856ac0,传递的类型是pqxx::result::field。

std::string column_content(pqxx::result::field a) {
    if (static_cast<bool>(a.size())) {
        return a.as<std::string>();
    } else {
        return "";
    }
}

关于c++ - 具有pqxx结果的模板函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34455530/

10-10 13:34