Update array.md

pull/1179/head
Nihilism 2 years ago committed by GitHub
parent e451fd2028
commit db584fd108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -148,7 +148,7 @@ println!("{:#?}", array);
**正确的写法**,应该调用`std::array::from_fn`
```rust
let array: [String; 8] = core::array::from_fn(|i| String::from("rust is good!"));
let array: [String; 8] = std::array::from_fn(|i| String::from("rust is good!"));
println!("{:#?}", array);
```

Loading…
Cancel
Save