c++ 类的静态模板函数 不写到 头文件 的方法

a.h

#pragma once
class A {
public:
    static int a();
    template <typename T>
    static T b();
};

a_t.h

#pragma once
#include "a.h"
template <typename T>
T A::b(){
    T r;
    return r;
}

a.cpp

#include "a.h"
int A::a(){
    int r;
    return r;
}

本文作者:vanxkr

本文链接:http://www.vanxkr.com/2021/5/cpp-class-static-template

版权声明:本博客所有文章除特别声明外,均采用CC BY-NC-SA 3.0许可协议。转载请注明出处!

全局屏蔽 QSpinBox QComboBox QDoubleSpinBox 等的滚轮事件响应
0 条评论
已登录,注销 取消