用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧编程其他

Borland C++ 5.02 IDE 中的 bug

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 19:37:58

Borland C++ 5.02 IDE 中的一个 bug

from http://coneos.126.com

DarkSpy在Borland C++新闻组看到关于Borland C++ 5.02 IDE中的一个bug。

这个bug将会让编译器产生出错信息“(1,1) Bad object file record in module xxx near module offset 0x........”。
DarkSpy也试验了一下,确实是一个问题。

如果有Borland C++的fans的话,也不妨试验一下,具体步骤如下。

建立一个工程,目标程序为MS-DOS程序,工程名字就叫tm_terror,

然后,建立一个头文件:terror.h,里面写上代码:
#ifndef terr_h
#define terr_h

namespace foo
{
template<class T>
inline T absolute(T number)
{
if(number < T(0) ) return -number;
return number;
}
}

#endif

然后,建立:terror.cpp,写上代码:
#include "terror.h"

namespace foo2
{
using foo::absolute;

int do_test(int i)
{ return absolute(i); }
}

然后,在工程文件:tm_terror.cpp中,写上代码:
namespace foo2
{ int do_test(int); /* to spare a header, declaration */ }

int main()
{
return foo2::do_test(0);
}

注意,工程中,terror.cpp必须要在tm_terror.cpp上面,不是的话则用alt+up键提上去。

然后,编译,你就会发现这个错误显示。:)

如何解决?

1) 在 template 中不要使用 "using namespace::name;" ,要用 "using namespace;";
2) 在 IDE 中关闭 "Generate debug information" 选项。

虽然如此,Borland C++ 5.02 仍然不失为一款强劲的编译器,DarkSpy一直使用的就是这个。:)

DarkSpy 2001/6/3


Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:7,593.75000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号