通过使用当前区域设置或传入的指定区域设置将字符串转换为大写。 这些版本的 _strupr
、_strupr_l
、_mbsupr
、_mbsupr_l
、_wcsupr_l
、_wcsupr
具有安全增强功能,如 CRT 中的安全功能中所述。
重要
_mbsupr_s
和 _mbsupr_s_l
无法用于在 Windows 运行时中执行的应用程序。 有关详细信息,请参阅通用 Windows 平台应用中不支持的 CRT 函数。
语法
errno_t _strupr_s(
char *str,
size_t numberOfElements
);
errno_t _wcsupr_s(
wchar_t * str,
size_t numberOfElements
);
errno_t _strupr_s_l(
char * str,
size_t numberOfElements,
_locale_t locale
);
errno_t _wcsupr_s_l(
wchar_t * str,
size_t numberOfElements,
_locale_t locale
);
errno_t _mbsupr_s(
unsigned char *str,
size_t numberOfElements
);
errno_t _mbsupr_s_l(
unsigned char *str,
size_t numberOfElements,
_locale_t locale
);
template <size_t size>
errno_t _strupr_s(
char (&str)[size]
); // C++ only
template <size_t size>
errno_t _wcsupr_s(
wchar_t (&str)[size]
); // C++ only
template <size_t size>
errno_t _strupr_s_l(
char (&str)[size],
_locale_t locale
); // C++ only
template <size_t size>
errno_t _wcsupr_s_l(
wchar_t (&str)[size],
_locale_t locale
); // C++ only
template <size_t size>
errno_t _mbsupr_s(
unsigned char (&str)[size]
); // C++ only
template <size_t size>
errno_t _mbsupr_s_l(
unsigned char (&str)[size],
_locale_t locale
); // C++ only
参数
str
大写字符串。
numberOfElements
缓冲区的大小。
locale
要使用的区域设置。
返回值
如果成功,则返回零;如果失败,则返回非零错误代码。
这些函数验证其参数。 如果 str
是 NULL
指针,则调用无效参数处理程序,如参数验证中所述。 如果允许执行继续,则这些函数返回 EINVAL
,并且将 errno
设置为 EINVAL
。 如果 numberOfElements
小于该字符串的长度,则函数返回 ERANGE
并将 errno
设置为 ERANGE
。
备注
_strupr_s
函数将 str
中的每个小写字母就地转换为大写。 _wcsupr_s
是 _strupr_s
的宽字符版本。 _mbsupr_s
是_strupr_s
的多字节字符版本。
该转换由区域设置的 LC_CTYPE
类别设置确定。 其他字符不受影响。 有关 LC_CTYPE
的详细信息,请参阅 setlocale
。 这些不带 _l
后缀的函数的版本使用当前区域设置;带有 _l
后缀的版本相同,只不过它们使用传入的区域设置。 有关详细信息,请参阅 Locale。
在 C++ 中,使用这些函数由模板重载简化;重载可以自动推导出缓冲区长度 (不再需要指定大小自变量),并且它们可以自动用以更新、更安全的对应物替换旧的、不安全的函数。 有关详细信息,请参阅安全模板重载。
这些函数的调试库版本首先用 0xFE 填充缓冲区。 若要禁用此行为,请使用 _CrtSetDebugFillThreshold
。
默认情况下,此函数的全局状态范围限定为应用程序。 若要更改此行为,请参阅 CRT 中的全局状态。
一般文本例程映射
TCHAR.H 例程 | _UNICODE 和 _MBCS 未定义 |
_MBCS 已定义 |
_UNICODE 已定义 |
---|---|---|---|
_tcsupr_s |
_strupr_s |
_mbsupr_s |
_wcsupr_s |
_tcsupr_s_l |
_strupr_s_l |
_mbsupr_s_l |
_wcsupr_s_l |
要求
例程 | 必需的标头 |
---|---|
%> | <string.h> |
<string.h> 或 <wchar.h> |
有关兼容性的详细信息,请参阅 兼容性。
示例
请参阅 _strlwr_s
、_strlwr_s_l
、_mbslwr_s
、_mbslwr_s_l
、_wcslwr_s
和 _wcslwr_s_l
的示例。