C++ STL的std :: is_unsigned模板用于检查类型是否为无符号算术类型。它返回一个显示相同值的布尔值。
语法:
template struct is_unsigned;
参数:该模板包含单个参数T(Trait类),以检查T是否为无符号算术类型。
返回值:此模板返回一个布尔值,如下所示:
- True :如果类型是无符号算术类型。
- False :如果类型是带符号的算术类型。
下面的程序说明了C++ STL中的std :: is_unsigned模板:
程序1 :
// C++ program to illustrate
// std::is_unsigned template
#include
#include
using namespace std;
class gfg {
};
enum sam : unsigned {};
enum class raj : unsigned {};
int main()
{
cout << boolalpha;
cout << "is_unsigned:" << '\n';
cout << "unsigned int:"
<< is_unsigned::value << '\n';
cout << "gfg:"
<< is_unsigned::value << '\n';
cout << "sam:"
<< is_unsigned::value << '\n';
cout << "raj:"
<< is_unsigned::value << '\n';
return 0;
}
输出:
is_unsigned:
unsigned int:true
gfg:false
sam:false
raj:false
程序2 :
// C++ program to illustrate
// std::is_unsigned template
#include
#include
using namespace std;
int main()
{
cout << boolalpha;
cout << "is_unsigned:" << '\n';
cout << "signed char:"
<< is_unsigned::value << '\n';
cout << "unsigned char:"
<< is_unsigned::value << '\n';
cout << "signed int:"
<< is_unsigned::value << '\n';
return 0;
}
输出:
is_unsigned:
signed char:false
unsigned char:true
signed int:false
程序3 :
// C++ program to illustrate
// std::is_unsigned template
#include
#include
using namespace std;
int main()
{
cout << boolalpha;
cout << "is_unsigned:" << '\n';
cout << "bool:"
<< is_unsigned::value << '\n';
cout << "float:"
<< is_unsigned::value << '\n';
cout << "double:"
<< is_unsigned::value << '\n';
return 0;
}
输出:
is_unsigned:
bool:true
float:false
double:false
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。