帮助中心帮助中心
本页翻译不是最新的。点击此处可查看最新英文版本。
向字典中添加条目
自 R2023b 起
d2 = insert(d1,key,value)
d2 = insert(d1,key,value,Overwrite=tf)
d2 = insert(d1,key,value) 将 value 赋给 dictionary d 中的 key。如果 key 已有对应的值,则 insert 会覆盖该值。
d1
key
value
dictionary
d
insert
d = insert(d,key,value) 等效于 d(key) = value。
d = insert(d,key,value)
d(key) = value
示例
d2 = insert(d1,key,value,Overwrite=tf) 指定是否覆盖与 key 对应的现有值。
tf
全部折叠
创建一个包含几个键-值对组的字典。
names = ["Unicycle" "Bicycle" "Tricycle"]; wheels = [1 2 3]; d = dictionary(wheels,names)
d = dictionary (double --> string) with 3 entries: 1 --> "Unicycle" 2 --> "Bicycle" 3 --> "Tricycle"
插入一个新条目。
d = insert(d,4,"Car")
d = dictionary (double --> string) with 4 entries: 1 --> "Unicycle" 2 --> "Bicycle" 3 --> "Tricycle" 4 --> "Car"
插入新条目而不覆盖现有条目。
d = insert(d,[2 4],["Motorcycle" "Car"],Overwrite=false)
输入字典,指定为 dictionary 对象。
键集,指定为标量或数组。key 的数据类型必须匹配或可转换为 d 中键的数据类型。key 的大小必须与 value 的大小兼容。
值集,指定为标量或数组。value 的数据类型必须匹配或可转换为 d 中值的数据类型。key 的大小必须与 value 的大小兼容。
true
1
false
0
覆盖现有条目的选项,指定为 true、false、1 或 0。指定值 0 或 false 以防止 insert 覆盖现有条目。
示例: Overwrite=false
Overwrite=false
在 R2023b 中推出
dictionary | lookup | remove | entries | keys | values | isKey | types | configureDictionary | isConfigured | numEntries
lookup
remove
entries
keys
values
isKey
types
configureDictionary
isConfigured
numEntries
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Contact your local office