原创 error C2059

2009-2-25 21:20 2116 7 7 分类: 工程师职场

第一种:

项目类型建立时缺失默认类库文件引起类型错误

#include "stdafx.h"

强制类型转换

coeff1 =float( sqrt( 1.0 / DIMENSION ) );

第二种:


#include <stdio.h>
#define TEST
int main(int argc, char* argv[])
{
        #ifdef   TEST  
              printf(\nTEST   defined   %d,   TEST);
        #else  
              printf(\nTEST   not   defined);  
        #endif  


 return 0;
}


它也会引起C2059错误,错误信息:error C2059: syntax error : )

第三种:

头文件依赖关系

#include <openssl/buffer.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/conf.h>
#include <openssl/bio.h>
#include <openssl/objects.h>






PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
7
关闭 站长推荐上一条 /3 下一条