在线文档教程
C++
本土化 | Localizations

std::locale::operators (operator!=)

STD::locale::Operator==,运算符%21=

Defined in header
bool operator==( const locale& other ) const;(1)
bool operator!=( const locale& other ) const;(2)

测试两个区域设置是否相等。命名区域设置如果名称相等,则视为相等。如果未命名的区域设置是彼此的副本,则认为它们是相等的。

参数

other-a std::locale object to compare

返回值

1%29true如果other*this或者有一个相同的名字,false否则。

2%29false如果other*this或者有一个相同的名字,true否则。

另见

(constructor)constructs a new locale (public member function)
namereturns the name of the locale or "*" if unnamed (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/locale/locale/Operator[医]CMP