error C2059: syntax error : 'string'的解决

 

vs2005下。两个文件currTime.h

 

// currTime.h: interface for the CcurrTime class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CURRTIME_H__B4DFC04C_502E_4715_BCCF_4F3EC7A0B3F9__INCLUDED_)
#define AFX_CURRTIME_H__B4DFC04C_502E_4715_BCCF_4F3EC7A0B3F9__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


extern "C" double currTime(); // 使用高精度计时器

#endif // !defined(AFX_CURRTIME_H__B4DFC04C_502E_4715_BCCF_4F3EC7A0B3F9__INCLUDED_)


currTime.c

double currTime() //使用高精度计时器
{ 

double time;

return time;

}


 

编译时报错了:

1>正在编译...
1>currTime.c
1>e:\g2\fft\radarmonitorv2.1\currTime.h(13) : error C2059: syntax error : 'string'
1>Mixfft.c
1>e:\g2\fft\radarmonitorv2.1\Mixfft.h(5) : error C2059: syntax error : 'string'

 

解决方法:

将currTime.c 改为 currTime.cpp

 

参考:

http://social.msdn.microsoft.com/Forums/zh-CN/vcgeneral/thread/7d57c6e9-90ba-4af8-b25d-75a7e4756e1e

你可能感兴趣的:(c,String,interface,fft)