码迷,mamicode.com
首页 > 其他好文 > 详细

模板元编程例子

时间:2018-08-06 19:49:22      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:iostream   stat   stream   ret   std   using   str   return   highlight   

#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中的语法分析

模板元编程例子

标签:iostream   stat   stream   ret   std   using   str   return   highlight   

原文地址:https://www.cnblogs.com/youge-OneSQL/p/9432128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!