如何摆脱 - “警告:转换为非指针类型“char”;从 NULL”?

发布于 2024-11-08 07:09:42 字数 258 浏览 0 评论 0原文

我有这样的代码块:

int myFunc( std::string &value )
{
    char buffer[fileSize];
    ....
    buffer[bytesRead] = NULL;
    value = buffer;
    return 0;
}

行 - buffer[bytes] = NULL 给了我一个警告:从 NULL 转换为非指针类型“char”。我该如何摆脱这个警告?

I have this block of code:

int myFunc( std::string &value )
{
    char buffer[fileSize];
    ....
    buffer[bytesRead] = NULL;
    value = buffer;
    return 0;
}

The line - buffer[bytes] = NULL is giving me a warning: converting to non-pointer type 'char' from NULL. How do I get rid of this warning?

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

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

发布评论

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

评论(3

北城半夏 2024-11-15 07:09:42

不使用NULL?它通常是为指针保留的,并且您没有指针,只有一个简单的char。只需使用 \0(空终止符)或简单的 0

Don't use NULL? It's generally reserved for pointers, and you don't have a pointer, only a simple char. Just use \0 (null-terminator) or a simple 0.

怼怹恏 2024-11-15 07:09:42

buffer[bytesRead] = 0; // NULL 表示指针

作为建议,如果您想避免复制,那么可以考虑下面的方法。

int myFunc (std::string &value)
{
  s.resize(fileSize);
  char *buffer = const_cast<char*>(s.c_str());
  //...
  value[bytesRead] = 0;
  return 0;
}

buffer[bytesRead] = 0; // NULL is meant for pointers

As a suggestion, if you want to avoid copying and all then, below can be considered.

int myFunc (std::string &value)
{
  s.resize(fileSize);
  char *buffer = const_cast<char*>(s.c_str());
  //...
  value[bytesRead] = 0;
  return 0;
}
妄想挽回 2024-11-15 07:09:42

NULLNUL

NULL 是 C 和 C++ 中表示空指针的常量。

NUL 是 ASCII NUL 字符,在 C 和 C++ 中终止字符串并表示为 \0

您还可以使用 0,它与 \0 完全相同,因为在 C 中字符文字具有 int 类型。 在 C++ 中,字符常量是 char 类型。

NULLNUL.

NULL is a constant representing a null pointer in C and C++.

NUL is the ASCII NUL character, which in C and C++ terminates strings and is represented as \0.

You can also use 0, which is exactly the same as \0, since in C character literals have int type. In C++, character constants are type char.

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