c++ - 使用静态 constexpr 成员(函数指针)的模板特化

标签 c++ clang++

我有一个类模板,它调用 C 库中的外部函数。根据特化(主要是 floatdouble),它应该调用不同的函数。我可以通过模板特化来实现这一点。下面的代码使用 gcc 编译:

// -*- compile-command: "g++ -Wall -Wextra -Werror -pedantic -std=c++14 main.cpp -lm && ./a.out" -*-

#include <iostream>

extern "C" { // for illustration: not using cmath, but linking against libm
    float sinf(float);
    double sin(double);
}

template <typename T> struct Sin_callback;
template <> struct Sin_callback<float> { static constexpr auto sin_cb = sinf; };
template <> struct Sin_callback<double> { static constexpr auto sin_cb = sin; };

template <typename T> class Sin{
    static constexpr Sin_callback<T> m_cb {};
    T m_arg;
public:
    Sin(T&& arg): m_arg(arg) {}
    T calc() { return m_cb.sin_cb(m_arg); }
};

int main(){
    Sin<double> dbl(1.0);
    Sin<float> flt(1.0);
    std::cout.precision(17);
    std::cout << "ref:\t0.84147098480789650665" << std::endl;
    std::cout << "double:\t" << dbl.calc() << std::endl;
    std::cout << "float:\t" << flt.calc() << std::endl;
    return 0;
}

使用 gcc 5.4 时的输出:

ref:    0.84147098480789650665
double: 0.8414709848078965
float:  0.84147095680236816

但是如果我尝试使用 clang(3.8 和 4.0)编译它,编译会失败:

/tmp/main-75afd0.o: In function `Sin<double>::calc()':
main.cpp:(.text._ZN3SinIdE4calcEv[_ZN3SinIdE4calcEv]+0x14): undefined reference to `Sin_callback<double>::sin_cb'
/tmp/main-75afd0.o: In function `Sin<float>::calc()':
main.cpp:(.text._ZN3SinIfE4calcEv[_ZN3SinIfE4calcEv]+0x14): undefined reference to `Sin_callback<float>::sin_cb'
clang-4.0: error: linker command failed with exit code 1 (use -v to see invocation)

我无法理解为什么特化没有实例化。有什么想法吗?

最佳答案

clang 在处理静态 constexpr 数据成员时遇到问题。

如果将成员转换为函数,一切都会起作用。

这里我只是将调用运算符应用于代理函数对象。

#include <iostream>

extern "C" { // for illustration: not using cmath, but linking against libm
float sinf(float);
double sin(double);
}

template<typename T>
struct Sin_callback;

template<>
struct Sin_callback<float> {
    template<class...Args>
    constexpr auto operator()(Args &&... args) const { return sinf(std::forward<Args>(args)...); }
};

template<>
struct Sin_callback<double> {
    template<class...Args>
    constexpr auto operator()(Args &&... args) const { return sin(std::forward<Args>(args)...); }
};

template<typename T>
class Sin {

    T m_arg;
public:
    Sin(T &&arg) : m_arg(arg) {}

    T calc() {
        constexpr Sin_callback<T> m_cb{};
        return m_cb(m_arg);
    }
};

int main() {
    Sin<double> dbl(1.0);
    Sin<float> flt(1.0);
    std::cout.precision(17);
    std::cout << "ref:\t0.84147098480789650665" << std::endl;
    std::cout << "double:\t" << dbl.calc() << std::endl;
    std::cout << "float:\t" << flt.calc() << std::endl;
    return 0;
}

预期结果:

ref:    0.84147098480789650665
double: 0.8414709848078965
float:  0.84147095680236816

铿锵版本:

Apple LLVM version 8.1.0 (clang-802.0.41)
Target: x86_64-apple-darwin16.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

关于c++ - 使用静态 constexpr 成员(函数指针)的模板特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43472159/

相关文章:

c++ - 成员未归零,clang++ 错误?

c++ - std::fill 的 Clang 静态参数导致链接器失败

c++ - 包含和前向声明都出错

c++ - 如何在运行时实现 base 2 循环展开以进行优化

C++ 堆栈和二维数组

c++ - 在派生中取消隐藏与基类具有相同名称和不同签名的某些函数

c++ - 定义宏定义时出错

c++ - 我对 C++ 很陌生,我一直在尝试创建一个循环

C++ clang UBsan 抑制标志名称

c++ - 在c++中的macOS Catalina上编译 header 和cpp文件的问题