zoukankan      html  css  js  c++  java
  • VC中头文件编译错误:fatal error C1010:“unexpected end of file while looking for precompiled header directive"

    如何解决:"fatal error C1010:VC++6.0中常出现的"unexpected end of file while looking for precompiled header directive"的问题?

    我想大家在VC6.0中经常回遇到这样的问题,如何解决呢?

    1、看看是否缺少“;”,“}”  
      隐藏得深的是宏、.h文件的问题就要费点心思了

    2、一定是你在类的部分定义被删除了,M$在每个类中定义一些特殊的常量,是成对的,如下:  
      .h:  
      #if   !defined(AFX_CHILDFRM_H__54CA89DD_BA94_11D4_94D7_0010B503C2EA__INCLUDED_)  
      #define   AFX_CHILDFRM_H__54CA89DD_BA94_11D4_94D7_0010B503C2EA__INCLUDED_  
      .......  
      //{{AFX_INSERT_LOCATION}}  
      //   Microsoft   Visual   C++   will   insert   additional   declarations   immediately   before   the   previous   line.  
       
      #endif   //   !defined(AFX_MAINFRM_H__54CA89DB_BA94_11D4_94D7_0010B503C2EA__INCLUDED_)  
      你可以新建一个类,然后把这些拷贝过去或补上就可以了。   
    3、在头部加入   #include   "stdafx.h"

    4、在CPP文件第一行加上#include   "stdafx.h"。  
      或者Rebuild   All.  

    5、

    (1). [Project] - [Settings] - [C/C++] - [Category]
    (2). 选择 [Precomplied Headers]
    (3). 单选 [Not Using Precomplied Headers]
    (4). [OK]

    第5个方法比较高效。

  • 相关阅读:
    JustOj 1936: 小明A+B
    Codeforce 835B
    Codeforce 835A
    Java读取Properties工具类
    IDEA2019 断点调试
    Pagination+AngularJS实现前端的分页
    PageHelper实现分页
    100多个免费API接口分享 调用完全不限次数,以后总用得着
    HDU 5763 Another Meaning KMP+DP
    Codeforces Round #365 (Div. 2) D. Mishka and Interesting sum 离线+线段树
  • 原文地址:https://www.cnblogs.com/dartagnan/p/2126892.html
Copyright © 2011-2022 走看看