gpt4 book ai didi

kotlin - 在 Kotlin 文档 (KDoc) 中,是否可以链接到特定的重载方法?

转载 作者:行者123 更新时间:2023-12-03 00:17:55 26 4
gpt4 key购买 nike

考虑此 Kotlin 类的类注释:

/**
* This class has two methods, one that takes one parameters ([foo]),
* and another one that takes two parameters ([foo]).
**/
class Clazz {
/* Foo with one. */
fun foo(a: Int) { }

/* Foo with two. */
fun foo(a: Int, b: Int) { }
}

我希望第二个链接指向第二个函数(带有两个参数的函数)。

这在 Kotlin 文档语言中可能吗?

最佳答案

刚刚找到这个答案:

Note that KDoc does not have any syntax for resolving overloaded members in links. Since the Kotlin documentation generation tool puts the documentation for all overloads of a function on the same page, identifying a specific overloaded function is not required for the link to work.

来自https://kotlinlang.org/docs/reference/kotlin-doc.html

...但我不太明白其中的道理。

听起来这在文档与代码分开读取的上下文中是有意义的,但大多数时候,当我阅读或使用注释时,它是在 IDE UI 中。

关于kotlin - 在 Kotlin 文档 (KDoc) 中,是否可以链接到特定的重载方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59400005/

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