您现在的位置: 中国男护士网 >> 考试频道 >> 计算机等级 >> 二级辅导 >> C十十 >> 辅导 >> 正文    
  C++技巧(warningC4786错误解决方法) 【注册男护士专用博客】          

C++技巧(warningC4786错误解决方法)

www.nanhushi.com     佚名   不详 

  在使用std::vector的过程中,考试大提示编译器报了如下的warning:
  c:\program files\vc98\include\vector(61) : warning C4786: '??0?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QAE@PBV?$basic_string@DU?$char_t
  raits@D@std@@V?$allocator@D@2@@1@0ABV?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z : identifier was truncated to '255' characters in the browser information
  d:\rtd\ruleloader\treenode.h(15) : see reference to class template instantiation 'std::vector,class std::allocator >,class std::allocator  d::char_traits,class std::allocator > > >' being compiled
  此warning产生的原因是因为标识符过长,超过了最大限定255个字。例如:
  #define a_really_long_class_name a_really_really_really_really_really_really_really_ \
  really_really_really_really_really_really_really_really_really_really_really_really_ \
  really_really_really_really_really_really_really_really_really_really_really_really_really_really_really
  class a_really_long_class_name
  {
  public:
  a_really_long_class_name() {};
  int m_data;
  };
  void main()
  {
  a_really_long_class_name test_obj;
  test_obj.m_data = 12;
  }
  类名超过了255个字,使用时就会报4786的waring。在使用STL(C++标准模板库)的时候经常引发类似的错误,尤其是vector,map这类模板类,模板中套模板,一不小心就超长了。例如:
  template
  class VeryLongClassNameA{};
  template
  class VeryLongClassNameB{};
  template
  class VeryLongClassNameC{};
  template
  class VeryLongClassNameD{};
  class SomeRandomClass{};
  typedef VeryLongClassNameD ClassD ;
  typedef VeryLongClassNameC ClassC;
  typedef VeryLongClassNameB ClassB;
  typedef VeryLongClassNameA ClassA;
  void SomeRandomFunction(ClassA aobj){}
  void main()
  {
  ClassA AObj ;
  SomeRandomFunction(AObj) ;
  }
  解决方法有两种,一种是直接定义别名:
  #ifdef _DEBUG
  #define VeryLongClassNameA A
  #define VeryLongClassNameB B
  #endif
  另一种是屏蔽4786warning:
  #pragma warning(disable : 4786)
  注意屏蔽语句必须放在报错的模板类的引用声明(如#include )之前,否则还是不起作用。

 

文章录入:杜斌    责任编辑:杜斌 
  • 上一篇文章:

  • 下一篇文章:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
     

    联 系 信 息
    QQ:88236621
    电话:15853773350
    E-Mail:malenurse@163.com
    免费发布招聘信息
    做中国最专业男护士门户网站
    最 新 热 门
    最 新 推 荐
    相 关 文 章
    没有相关文章
    专 题 栏 目

      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)                            【进男护士社区逛逛】
    姓 名:
    * 游客填写  ·注册用户 ·忘记密码
    主 页:

    评 分:
    1分 2分 3分 4分 5分
    评论内容:
  • 请遵守《互联网电子公告服务管理规定》及中华人民共和国其他各项有关法律法规。
  • 严禁发表危害国家安全、损害国家利益、破坏民族团结、破坏国家宗教政策、破坏社会稳定、侮辱、诽谤、教唆、淫秽等内容的评论 。
  • 用户需对自己在使用本站服务过程中的行为承担法律责任(直接或间接导致的)。
  • 本站管理员有权保留或删除评论内容。
  • 评论内容只代表网友个人观点,与本网站立场无关。