日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

php小編西瓜在這里為大家解答一個問題:“Rust 相當于 Go 中的 append 是什么?”Rust 是一種系統級編程語言,而 Go 是一種并發編程語言。在 Rust 中,相當于 Go 中的 append 函數的功能是使用 Vec 類型的 push 方法。Vec 是 Rust 標準庫中的一個動態數組類型,使用 push 方法可以在數組的末尾添加元素。這種功能類似于 Go 中的 append 函數,但是在 Rust 中需要使用 Vec 的 push 方法實現。通過這種方式,Rust 提供了一種簡單而靈活的方式來操作動態數組。

問題內容

我試圖通過自己閱讀文檔來弄清楚,但對于如何將此 go 函數轉換為 rust 沒有運氣:

func main() {
  cards := []string{"ace of diamonds", newcard()}
  cards = append(cards, "six of spades")

  fmt.println(cards)
}

func newcard() string {
  return "five of diamonds"
}

登錄后復制

這是不正確的,至少我知道的 cards.append 是錯誤的:

fn main() {
    let mut cards: [&str; 2] = ["Ace of Diamonds", new_card()];
    let mut additional_card: [&str; 1] = ["Six of Spades"];
    cards.append(additional_card);

    println!("cards")
}

fn new_card() -> &'static str  {
    "Five of Diamonds"
}

登錄后復制

解決方法

你不能。就像在 go 中一樣,rust 數組是固定大小的。

類型 [&str; 2]rust 中的 大致相當于 go 中的 [2]string,但你也不能對其進行 append

在 rust 中,最接近 go 切片的是 vec 您可以像這樣使用:

fn main() {
    let mut cards = vec!["Ace of Diamonds", new_card()];
    let additional_cards: [&str; 2] = ["Six of Spades", "Seven of Clubs"];
    // for anything that implements `IntoIterator` of cards
    cards.extend(additional_cards);
    // or for a single card only
    cards.push("Three of Hearts");

    println!("{cards:?}")
}

fn new_card() -> &'static str {
    "Five of Diamonds"
}

登錄后復制

分享到:
標簽:標準庫
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定