admin管理员组文章数量:1344554
I'm running Android Studio Preview versions (currently Android Studio Narwhal | 2025.1.1 Canary 3) & noticed that I'm getting a lot of warnings about conflicts between member functions & extensions with various calls including toString() & indexOf().
I recall AS prompting me a few versions back to replace certain function calls with extensions & I haven't noticed these warnings until I installed the current AS preview version - & I'm not sure what to do about them. It appears that the issue is (at least in some cases) due to nullable vs non nullable parameters & how they're dealt with by the function vs the extension.
I know I can differentiate between the member function & extension at a module level by importing the extension & aliasing it - eg:
import kotlin.toString as toStringExtension
& then calling it using .toStringExtension() - but this seems like a clunky way to deal with it.
Is the warning just a bug in the preview version of AS (or lint) or are we going to have to deal with this whenever there's a conflict between a member function & an extension going forward? I can understand receiving the warning if there's a conflict between a built in Kotlin function & an extension I've created, but the warnings I'm seeing are in cases where they are both built into Kotlin.
I'm running Android Studio Preview versions (currently Android Studio Narwhal | 2025.1.1 Canary 3) & noticed that I'm getting a lot of warnings about conflicts between member functions & extensions with various calls including toString() & indexOf().
I recall AS prompting me a few versions back to replace certain function calls with extensions & I haven't noticed these warnings until I installed the current AS preview version - & I'm not sure what to do about them. It appears that the issue is (at least in some cases) due to nullable vs non nullable parameters & how they're dealt with by the function vs the extension.
I know I can differentiate between the member function & extension at a module level by importing the extension & aliasing it - eg:
import kotlin.toString as toStringExtension
& then calling it using .toStringExtension() - but this seems like a clunky way to deal with it.
Is the warning just a bug in the preview version of AS (or lint) or are we going to have to deal with this whenever there's a conflict between a member function & an extension going forward? I can understand receiving the warning if there's a conflict between a built in Kotlin function & an extension I've created, but the warnings I'm seeing are in cases where they are both built into Kotlin.
Share Improve this question asked yesterday Computersmith64Computersmith64 832 silver badges5 bronze badges1 Answer
Reset to default 1So it seems this was a bug in AS which has been resolved in the Narwhal Canary 4 release.
False positive for lint issue `MemberExtensionConflict` if extension function receiver is nullable
本文标签:
版权声明:本文标题:kotlin - Android Studio warning: "Conflict applicable candidates of member and extension" - not sure what to d 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743798476a2540872.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论