瀏覽代碼

Docs Clarify Array.fill behavior when reference type is passed in

kleonc 2 年之前
父節點
當前提交
5f01413774
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      doc/classes/Array.xml

+ 1 - 0
doc/classes/Array.xml

@@ -186,6 +186,7 @@
 				array.resize(10)
 				array.fill(0) # Initialize the 10 elements to 0.
 				[/codeblock]
+				[b]Note:[/b] If [code]value[/code] is of a reference type ([Object]-derived, [Array], [Dictionary], etc.) then the array is filled with the references to the same object, i.e. no duplicates are created.
 			</description>
 		</method>
 		<method name="find">