ctype::toupper
转换字符或字符范围为大写。
CharType toupper(
CharType ch
) const;
const CharType *toupper(
CharType* first,
const CharType* last
) const;
参数
ch
要转换的字符为大写。first
到第一个字符的指针。情况要转换的字符范围。last
为字符的指针。在情况要转换的字符范围内的最后一个字符之后。
返回值
第一个成员函数返回参数 ch的大写形式。 如果窗体被不存在,则返回 ch。
第二个成员函数返回 last。
备注
第一个成员函数返回 do_toupper(ch)。 第二个成员函数返回 do_toupper(first,last)。
示例
// ctype_toupper.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc1 ( "German_Germany" );
char string[] = "Hello, my name is John";
use_facet<ctype<char> > ( loc1 ).toupper
( string, string + strlen(string) );
cout << "The uppercase string is: " << string << endl;
}
要求
页眉: <区域设置>
命名空间: std