奇怪的语法和句法!
大家好:我碰到了下面的奇怪的语法:
书本上没找到!所以到此指教各位:希望大家帮忙!
#ifdef __cplusplus//问题1:此句与倒数第三行#ifdef __cplusplus为什么意思?
extern "C"
{ //问题2:extern "C" { 。。。}做什么解释呢?
#endif //问题3:#endif 一般是#ifndef #define #endif出现的
//此处所指?
.......................
//问题4:为何将函数定义写在 extern "C" {。。}
WORD __declspec (dllexport) MedianCut( 函数参数);
//问题5:此函数MedianCut前面的
//__declspec (dllexport) 是什么意思用途?
.........................
#ifdef __cplusplus
}
#endif //问题6:此句#endif 与谁配对呢?