strdup 还是 _strdup?

发布于 2024-12-07 03:08:47 字数 524 浏览 0 评论 0 原文

当我在 Microsoft Visual C++ 中使用 strdup 时,它会警告我:

警告 C4996:“strdup”:此项目的 POSIX 名称已弃用。相反,请使用 ISO C++ 一致名称:_strdup。有关详细信息,请参阅联机帮助。

因此,_strdup 似乎是正确的。

但是当我在 GCC(Fedora Linux 操作系统)中使用 _strdup 时,编译器显示错误:

错误:“_strdup”未在此范围内声明

对于 GCC 和 Linux,编译器不会显示 strdup 的任何错误。

strdup_strdup 哪个是正确的?

注意:我在代码中包含

When I use strdup in Microsoft Visual C++, it warns me:

warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details.

Thus it seems _strdup is correct.

But when I use _strdup in GCC (Fedora Linux OS), the compiler shows an error:

error: ‘_strdup’ was not declared in this scope

With GCC and Linux, compiler does not show any error for strdup.

Which is correct - strdup or _strdup?

Note: I include <string.h> in my code.

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

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

发布评论

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

评论(7

鲸落 2024-12-14 03:08:47

哪个是正确的?

strdup 是一个完全正确的 POSIX 函数。然而,它不属于该标准,并且 ANSI C 标准保留了一些(广泛的)函数名称类别以供进一步使用。其中,有些

  • 函数名称以 str 和小写字母开头

,因此 MS 人员决定将 strdup 替换为 _strdup

我只是继续使用 strdup。 C 委员会不太可能将 strdup 定义为 POSIX 之外的其他内容。 #define strdup _strdup 或消除警告。

顺便说一句,我希望您看到这也适用于具有 string_list 等名称的函数。

Which is correct?

strdup is a perfectly correct POSIX function. Nevertheless, it doesn't belong to the standard, and the ANSI C standard reserves some (broad) classes of function names for further use. Among these, there are

  • Function names that begin with str and a lowercase letter

therefore, the MS guys decided to replace strdup with _strdup.

I'd just continue using strdup. It's unlikely the C committee will define strdup to something else than POSIX. Either #define strdup _strdup or silence the warning.

BTW I hope you see this applies to your functions with names like string_list etc., too.

歌入人心 2024-12-14 03:08:47

strdup 不是标准 C++ 函数。但它显然是一个 POSIX 函数,而且无论如何,它是一个众所周知的函数,自 K&R C 以来就一直存在。因此,如果您绝对必须使用它,请不要担心任何可能的名称冲突,并且只需编写 strdup 即可获得最大的可移植性。

strdup is not a standard C++ function. But it is apparently a POSIX function, and anyway it's a well known function which has been there since K&R C. So if you absolutely must use it, do not fret about any possible name collision, and just write strdup for maximum portability.

苦妄 2024-12-14 03:08:47

您可以#define _CRT_NONSTDC_NO_DEPRECATE 禁用此警告。

You can #define _CRT_NONSTDC_NO_DEPRECATE to disable this warning.

忆离笙 2024-12-14 03:08:47

如果您只是想避免出现警告消息:

项目->属性-> C/C++->预处理器->预处理器定义

编辑此内容,然后添加

_CRT_NONSTDC_NO_DEPRECATE

If you just want to avoid the Warning message:

Project-> property -> C/C++ -> Preprocessor -> Preprocessor Definitions

Edit this, and add

_CRT_NONSTDC_NO_DEPRECATE

梦断已成空 2024-12-14 03:08:47

strdup 是 POSIX:

http://pubs.opengroup.org/onlinepubs/9699919799/functions /strdup.html

_strdup 是 Windows 特定的:

http://msdn.microsoft.com/en-us/ library/y471khhc(v=vs.80).aspx

在 Unix 上,使用 strdup。在 Windows 上,使用 _strdup。就是这么简单。如果您需要在 Unix 和 Windows 之间编写可移植代码:

  • 使用系统相关宏(例如 _WIN32 与 _POSIX_VERSION)来选择正确的函数(但请注意,宏可能取决于特定的预先存在的包含文件):

http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html

http://msdn.microsoft.com/en-us/library/b0084kay(v=vs.80).aspx

  • 使用标准函数重新实现strdup:strlen、malloc和memmove。

  • 使用跨平台实用程序库,例如 glib:

http://developer.gnome.org/glib/2.28/glib-String-Utility-Functions.html#g-strdup

请注意,Visual C++ 消息表明 _strdup 属于 C++ 标准,但这是错误,因为它可以在 C++ 标准上验证。它仅使用下划线前缀作为函数的“命名空间”。

http://www.open-std.org /jtc1/sc22/wg21/docs/papers/2012/n3376.pdf

strdup is POSIX:

http://pubs.opengroup.org/onlinepubs/9699919799/functions/strdup.html

_strdup is Windows specific:

http://msdn.microsoft.com/en-us/library/y471khhc(v=vs.80).aspx

On Unix, use strdup. On Windows, use _strdup. It's that simple. If you need to write portable code between Unix and Windows:

  • use system dependent macros (for example _WIN32 vs. _POSIX_VERSION) to select the proper function (but notice that the macros may depend on specific pre existing include files):

http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html

http://msdn.microsoft.com/en-us/library/b0084kay(v=vs.80).aspx

  • use standard functions to reimplement strdup: strlen, malloc and memmove.

  • use a cross platform utility library, like glib:

http://developer.gnome.org/glib/2.28/glib-String-Utility-Functions.html#g-strdup

Note that Visual C++ message suggests that _strdup belongs to the C++ standard, but this is false, as it can be verified on the C++ standard. It merely uses the underscore prefix as a "namespace" for the function.

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3376.pdf

空心↖ 2024-12-14 03:08:47

不知道C++。

C 标准没有描述任何带有strdup 名称(尽管该名称是保留的)。
为了便于移植,在 C 语言中,最好将其替换为 mallocstrcpyfree

Don't know about C++.

The C Standard does not describe any function with the strdup name (though the name is reserved).
To be portable, in C, you're better off replacing that with malloc, strcpy, and free.

划一舟意中人 2024-12-14 03:08:47

这不是警告,而是在高版本的 vs 中报告错误。

使用宏 #ifdef WIN32 进行切换

it's not a warning but an error reported in higher version of vs.

use macro #ifdef WIN32 to switch

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