StrDupA 函数 (shlwapi.h)
复制字符串。
语法
PSTR StrDupA(
PCSTR pszSrch
);
参数
pszSrch
类型: PCTSTR
指向以 null 结尾的常量字符串的指针。
返回值
类型: PTSTR
返回复制的字符串的地址;如果无法复制字符串,则返回 NULL 。
注解
StrDup 将分配原始字符串大小的存储。 如果存储分配成功,则会将原始字符串复制到重复字符串。
此函数使用 LocalAlloc 为字符串副本分配存储空间。 调用应用程序必须通过在调用 StrDup 返回的指针上调用 LocalFree 函数来释放此内存。
示例
此简单的控制台应用程序演示 了 StrDup 的用法。
#include <windows.h>
#include <shlwapi.h>
#include <stdio.h>
void main(void)
{
char buffer[] = "This is the buffer text";
char *newstring;
// Note: Never use an unbounded %s format specifier in printf.
printf("Original: %25s\n", buffer);
newstring = StrDup(buffer);
if (newstring != NULL)
{
printf("Copy: %25s\n", newstring);
LocalFree(newstring);
}
}
OUTPUT:
- - - - - -
Original: This is the buffer text
Copy: This is the buffer text
注意
shlwapi.h 标头将 StrDup 定义为别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将非特定编码别名的使用与非非特定编码的代码混合使用可能会导致不匹配,从而导致编译或运行时错误。 有关详细信息,请参阅 函数原型的约定。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 专业版、Windows XP [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | shlwapi.h |
Library | Shlwapi.lib |
DLL | Shlwapi.dll (版本 4.71 或更高版本) |