将 key 与给定的 value 关联。
key
value
如果该键已在映射中,则其关联的值将被更改。否则,将键/值对添加到映射中。
void operator []=(String key, String value) { _setItem(key, value); }