function template
<locale>

std::isupper

template <class charT>  bool isupper (charT c, const locale& loc);
使用 locale 检查字符是否为大写字母
使用 locale locctype 区域因子,检查 c 是否为大写字母,返回值与调用 ctype::is 相同,形式为

1
use_facet < ctype<charT> > (loc).is (ctype_base::upper, c)

此函数模板重载了 C 函数 isupper(在 <cctype> 中定义)。

参数

c
要检查的字符。
loc
要使用的 locale。它必须具有 ctype 方面。

模板参数 charT 是字符类型。

返回值

如果 c 确实是大写字母,则返回 true
否则返回 false

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// isupper example (C++)
#include <iostream>       // std::cout
#include <string>         // std::string
#include <locale>         // std::locale, std::isupper, std::tolower

int main ()
{
  std::locale loc;
  std::string str="Test String.\n";
  char c;
  for (std::string::size_type i=0; i<str.length(); ++i)
  {
    c=str[i];
    if (std::isupper(c,loc)) c=std::tolower(c,loc);
    std::cout << c;
  }
  return 0;
}

输出
test string. 


数据竞争

将访问 loc 及其 ctype 方面。

异常安全

强保证:如果抛出异常,则没有效果。

另见