toUpperCase抽象方法

String toUpperCase()

将此字符串中的所有字符转换为上档字母。

如果字符串已经全部为大写,此方法将返回this

'alphabet'.toUpperCase(); // 'ALPHABET'
'ABC'.toUpperCase(); // 'ABC'

此函数使用独立于语言的Unicode映射,因此在某些语言中才能工作。

实现

// TODO(floitsch): document better. (See EcmaScript for description).
String toUpperCase();