有没有办法在 Intellij IDE 中显示给定 Kotlin class 的所有扩展函数?
Is there a way to show all the extension functions of a given Kotlin class in Intellij IDE?
到目前为止我发现的唯一方法是创建给定 class 的实例,然后使用自动完成功能查看所有可能的函数。显然,这种方式比较麻烦,而且需要花费太多时间。有没有更简洁的方法来查看所有可能的功能?
如果您 select class 并右键单击 select Find Usages
然后 select Group by type
,它将显示用法其中 class 是 Extension receiver type
(如果您想一起查看所有可能的扩展名,请确保未选中 Group by test/production
)。
例如
到目前为止我发现的唯一方法是创建给定 class 的实例,然后使用自动完成功能查看所有可能的函数。显然,这种方式比较麻烦,而且需要花费太多时间。有没有更简洁的方法来查看所有可能的功能?
如果您 select class 并右键单击 select Find Usages
然后 select Group by type
,它将显示用法其中 class 是 Extension receiver type
(如果您想一起查看所有可能的扩展名,请确保未选中 Group by test/production
)。
例如