let a: Vec<String> = vec!["0".to_string()]; let b: Vec<&str> = a.iter().map(AsRef::as_ref).collect(); let c: &[&str] = b.as_ref(); ...
確定! 回上一頁