An array expression can be written by enclosing zero or more comma-separated expressions of uniform type in square brackets. This produces and array containing each of these values in the order they are written.
Alternatively there can be exactly two expressions inside the brackets, separated by a semi-colon. The expression after the ;
must be a have type usize
and be a constant expression, such as a literal or a constant item. [a; b]
creates an array containing b
copies of the value of a
. If the expression after the semi-colon has a value greater than 1 then this requires that the type of a
is Copy
.
# #![allow(unused_variables)] #fn main() { [1, 2, 3, 4]; ["a", "b", "c", "d"]; [0; 128]; // array with 128 zeros [0u8, 0u8, 0u8, 0u8]; #}
Array and slice-typed expressions can be indexed by writing a square-bracket-enclosed expression (the index) after them. When the array is mutable, the resulting lvalue can be assigned to. For other types an index expression a[b]
is equivalent to *std::ops::Index::index(&a, b)
, or *std::opsIndexMut::index_mut(&mut a, b)
in a mutable lvalue context. Just as with methods, Rust will also insert dereference operations on a
repeatedly to find an implementation.
Indices are zero-based, and are of type usize
for arrays and slices. Array access is a constant expression, so bounds can be checked at compile-time for constant arrays with a constant index value. Otherwise a check will be performed at run-time that will put the thread in a panicked state if it fails.
# #![allow(unused_variables)] #fn main() { ([1, 2, 3, 4])[2]; // Evaluates to 3 let x = (["a", "b"])[10]; // warning: const index-expr is out of bounds let n = 10; let y = (["a", "b"])[n]; // panics let arr = ["a", "b"]; arr[10]; // panics #}
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/reference/expressions/array-expr.html