5
我收到以下错误:错误:预计'<'token之前的非限定id |
preprocessor_directives.cpp|15|error: expected unqualified-id before '<' token|
preprocessor_directives.cpp|26|error: expected `;' before "int"|
||=== Build finished: 2 errors, 0 warnings ===|
#include <iostream>
using namespace std;
// Avoid. Using #define for constants
#define MY_CONST1 1000
// Use. Equivalent constant definition
const int MY_CONST2 = 2000;
// Avoid. Using #define for function like macros
#define SQR1(x) (x*x)
// Use. Equivalent function definition
inline template <typename T>
T SQR2 (T a) {
return a*a;
}
// Writing #define in multiple lines
#define MAX(a,b) \
((a) > (b) ? (a) : (b))
// Compile time flags
#define DEBUG
int main()
{
cout << "SQR1 = " << SQR1(10) << endl;
cout << "SQR2 = " << SQR2(10) << endl;
cout << "MAX = " << MAX(10,11) << endl;
cout << "MY_CONST1 = " << MY_CONST1 << endl;
cout << "MY_CONST2 = " << MY_CONST2 << endl;
return 0;
}
问题是内联模板定义。你为什么要在这里使用inline关键字? – poseid
+1避免。使用#define for ....'。保持自我学习。顺便说一句,也避免宏MAX'。 – Nawaz
我从这个网站获得了http://login2win.blogspot.com/2008/06/c-preprocessor-directives.html – pandoragami