为什么编译这段代码会产生错误?

发布于 2024-12-17 04:57:04 字数 1246 浏览 1 评论 0原文

我相信这是正确的标头:

  #include <cstdio>

注意,上面的声明和这个声明之间有区别:

  #include <stdio.h>

第一个声明将所有内容都放在“std”命名空间中,第二个声明则没有。所以我使用第一个。

下面是我在 aix6.1 上使用 g++4.4.6 编译的代码:-

#include <cstdarg> //< va_list
#include <cstdio>  //< vsnprintf()
#include "virtual_utils.h"

namespace VS
{


const char* format_str( const char* str, ... ) throw()
{
  static char buf[10][1024];
  static unsigned long buf_no = 0;

  char* cur_buf = buf[ ++buf_no % 10 ];
  buf_no %= 10;

  va_list vl;
  va_start( vl, str );
#ifdef _MSC_VER
  std::_vsnprintf( cur_buf, sizeof(buf), str, vl );
#else
  std::vsnprintf( cur_buf, sizeof(buf), str, vl );
#endif

  return cur_buf;
}


} //< namespace VS

这些是我收到的以下错误:-

virtual_utils.C: In function 'const char* VS::format_str(const char*, ...)':
virtual_utils.C:28: error: 'vsnprintf' is not a member of 'std'

编辑: 修改上面的代码以删除 #include "virtual_utils.h" 并添加 main(),它 在 Ideone 上的 gcc4.3.4 下编译时带有警告干净地在gcc4.5.1

I believe this is the right header:

  #include <cstdio>

Note, there is a difference between the above declaration and this one:

  #include <stdio.h>

The first one puts everything in the "std" namespace, the 2nd one doesn't. So I am using the first one.

Below is the code which I am compiling using g++4.4.6 on aix6.1:-

#include <cstdarg> //< va_list
#include <cstdio>  //< vsnprintf()
#include "virtual_utils.h"

namespace VS
{


const char* format_str( const char* str, ... ) throw()
{
  static char buf[10][1024];
  static unsigned long buf_no = 0;

  char* cur_buf = buf[ ++buf_no % 10 ];
  buf_no %= 10;

  va_list vl;
  va_start( vl, str );
#ifdef _MSC_VER
  std::_vsnprintf( cur_buf, sizeof(buf), str, vl );
#else
  std::vsnprintf( cur_buf, sizeof(buf), str, vl );
#endif

  return cur_buf;
}


} //< namespace VS

These are the following errors which I am getting:-

virtual_utils.C: In function 'const char* VS::format_str(const char*, ...)':
virtual_utils.C:28: error: 'vsnprintf' is not a member of 'std'

Edit:
Modifying the above code to remove the #include "virtual_utils.h" and to add a main(), it compiles with a warning under gcc4.3.4 on Ideone and cleanly under gcc4.5.1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年已逝 2024-12-24 04:57:04

使用 --save-temps 进行编译,并检查它生成的 .ii 文件。这应该可以清楚地表明什么是在哪个命名空间中定义的,什么不是。

Compile with --save-temps, and examine the .ii file it produces. That should make it clear what's defined in what namespace, and what isn't.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文