模板元编程例子

Posted youge-onesql

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板元编程例子相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include<string>
using namespace std;


template<int N>
class Pow3{
public:
    static const int result = 3 * Pow3<N-1>::result;
};

template < >
class Pow3<0>{
public:
    static const int result =1;
};

int main(int argc, char *argv[]){
    cout << "Pow3<2>::result= "<< Pow3<2>::result << endl;
    return 0;
}

  

简直就是SQL中的语法分析

以上是关于模板元编程例子的主要内容,如果未能解决你的问题,请参考以下文章

元编程的使用示例

深刻理解Python中的元类(metaclass)

模板元入门的 奇书啊!《产生式编程——方法工具与应用》

Item 48:了解模板元编程

C++模板元编程深度解析:探索编译时计算的神奇之旅

前端开发工具vscode如何快速生成代码片段