operator [] 抽象方法
- int index
给定 index
位置的字符(作为一个单码单元 String)。
返回的字符串精确代表一个 UTF-16 码单元,可能是一个代理对的一半。代理对的单个成员是无效的 UTF-16 字符串
var clef = '\u{1D11E}';
// These represent invalid UTF-16 strings.
clef[0].codeUnits; // [0xD834]
clef[1].codeUnits; // [0xDD1E]
此方法与 String.fromCharCode(this.codeUnitAt(index))
等价。
实现
String operator [](int index);