美文网首页
Swift Quiz

Swift Quiz

作者: 阿召 | 来源:发表于2020-05-22 13:01 被阅读0次

// Swift Quiz

struct Person {

    let name: String

   

    mutating func changeName() {

        // ...

    }

}

var person = Person(name: "Florian")

person.changeName()

// Can you implement `changeName` so that it changes `person.name`?

留言公布答案~

相关文章

网友评论

      本文标题:Swift Quiz

      本文链接:https://www.haomeiwen.com/subject/cdlfahtx.html