在Rust中传递数组的数组(或切片的切片)

时间:2018-11-26 11:06:48

标签: arrays rust

我需要将对数组(或切片的切片)的引用的引用传递给Rust中的以下函数

const LNGTH: usize = 5;

fn swap_array<T>(x: &mut [&[T; LNGTH]]) {
    let temp = x[1];
    x[1] = x[0];
    x[0] = temp;
}

问题在于,似乎我必须为“内部”数组(此处为LNGTH)指定数组长度。

因此,以下代码可以正常工作:

fn main() {
    let x_array: [i32; LNGTH] = [5,2,8,9,1];
    let x_other: [i32; LNGTH] = [6,7,6,7,6];        
    let mut y_array: [&[i32; LNGTH]; 2] = [&x_array, &x_other];
    println!("before : {:?}", y_array);
    swap_array(&mut y_array);
    println!("after  : {:?}", y_array);    
} 

但是,如果我将swap_array的签名更改为fn swap_array<T>(x: &mut [&[T]]),则会出现以下错误:

error[E0308]: mismatched types
  --> src/main.rs:14:16
   |
14 |     swap_array(&mut y_array[..]);
   |                ^^^^^^^^^^^^^^^^ expected slice, found array of 5 elements
   |
   = note: expected type `&mut [&[_]]`
              found type `&mut [&[i32; 5]]`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.
error: Could not compile `tut_arrays`.

从C的角度来看,我希望有一个函数可以接受类型为T**的参数。 C中相应的功能看起来像这样

void swap_arrays(my_type ** x) {
    my_type* temp = x[1];
    x[1] = x[0];
    x[0] = temp;
}

1 个答案:

答案 0 :(得分:1)

这是切片的版本:

const LEN: usize = 5;

fn swap_array<T>(x: &mut [&[T]]) {
    let temp = x[1];
    x[1] = x[0];
    x[0] = temp;
}

fn main() {
    let x_array: [i32; LEN] = [5, 2, 8, 9, 1];
    let x_other: [i32; LEN] = [6, 7, 6, 7, 6];
    let mut y_array: [&[i32]; 2] = [&x_array, &x_other];
    println!("before : {:?}", y_array);
    swap_array(&mut y_array);
    println!("after  : {:?}", y_array);
}

您必须将形式参数更改为slice of slices,并且y_array的元素也必须是slices(后者基本上就是错误消息所说的内容)。