• 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个方法比较高效。

  • 相关阅读:
    CAD2014启动出现loadlibrary failed with error 87
    MFC界面更新实现方法
    easyui tabs update后tab上关闭图标失效的解决方案
    SQLServer
    Socket异步存储示例
    AspNetPager控件分页使用方法
    sqlserver 2008 孤立用户解决方法
    NPOI 2.0 读取、编辑、保存Excel文件
    NPOI 2.0 创建Excel文件
    jQuery.extend 函数详解
  • 原文地址:https://www.cnblogs.com/dartagnan/p/2003603.html
Copyright © 2020-2023  润新知