3

我试图在编译时使用模板找到最大公约数。考虑以下代码:

#include "stdafx.h"
#include <iostream>

template<int N, int M, int K>
class A{
public:
    static const int a=A<M,K,M%K>::a;
};
template<int N, int M>
class A<N,M,0>{
public:
    static const int a=M;
};

int _tmain(int argc, _TCHAR* argv[])
{
    std::cout << A<11,13,11>::a;
    return 0;
}

这段代码正在工作,但如果我想写

#include "stdafx.h"
#include <iostream>
template<int N, int M>
class GCD{
public:
    static const int a=A<N,M,N%M>::a;
};
template<int N, int M, int K>
class A{
public:
    static const int a=A<M,K,M%K>::a;
};
template<int N, int M>
class A<N,M,0>{
public:
    static const int a=M;
};

int _tmain(int argc, _TCHAR* argv[])
{
    std::cout << GCD<11,13>::a;
    return 0;
}

我有崩溃错误 C2059 '常量'。

为什么这段代码不起作用?

4

1 回答 1

3

您需要A在顶部进行前向声明:

template<int N, int M, int K>
class A;

然后它在符合标准的编译器上运行良好。或者你可以移动GCD到所有A东西下面。

活生生的例子

于 2013-10-10T17:56:19.837 回答