gpt4 book ai didi

swift - swift 在行尾的评论

转载 作者:行者123 更新时间:2023-11-28 05:55:21 24 4
gpt4 key购买 nike

当我们定义一个枚举类型时,我们可能需要针对每种情况进行一些注释。

我知道我们可以在 Obj-C 中使用这样的注释语法:

enum Example
{
Example1, ///< Comments for Example1.
Example2, ///< Comments for Example2.
Example3. ///< Comments for Example3.
}

我的问题是:如何 swift 做到这一点?

最佳答案

您可以在摘要中使用双星来显示评论:

enum Example {

/** Comments for Example1. (with stars) */
case example1

/// Comments for Example2. (with three slash)
case example2

/// Comments for Example3. (with three slash)
case example3
}

这是一个reference

关于swift - swift 在行尾的评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51639566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com