iswctype()是C / C++中的内置函数,用于检查给定的宽字符是否具有特定属性。它在C / C++的cwctype头文件中定义
句法:
int iswctype(wint_t wc, wctype_t desc)
参数:该函数接受两个强制性参数,如下所述:
- wc –要检查的宽字符。
- desc –通过调用wctype()获得要测试的属性。
返回值:该函数返回两个值,如下所示:
- 如果wc具有desc指定的属性,则它将返回非零值。
- 否则返回零。
下面的程序说明了上述函数。
程序1:
// Program to illustrate
// iswctype() function
#include
using namespace std;
int main()
{
wchar_t wc = L'A';
// checks if the type is digit
if (iswctype(wc, wctype("digit")))
wcout << wc << L" is a digit";
// checks if the type is alpha
else if (iswctype(wc, wctype("alpha")))
wcout << wc << L" is an alphabet";
else
wcout << wc << L" is neither "
<< "an alphabet nor a digit";
return 0;
}
输出:
A is an alphabet
程式2:
// Program to illustrate
// iswctype() function
#include
using namespace std;
int main()
{
wchar_t wc = L'5';
// checks if the type is digit
if (iswctype(wc, wctype("digit")))
wcout << wc << L" is a digit";
// checks if the type is alpha
else if (iswctype(wc, wctype("alpha")))
wcout << wc << L" is an alphabet";
else
wcout << wc << L" is neither"
<< " an alphabet nor a digit";
return 0;
}
输出:
5 is a digit
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。