英文:
Is it possible to override the behaviour of the len function for a custom type?
问题
我已经定义了一个自定义类型,其中包括一个未导出的数组等内容。我想知道是否有办法在不导出数组的情况下,覆盖我的自定义类型的len()
函数的实现方式?
谢谢。
英文:
I've defined a custom type which consists of, among other things, an unexported array.
What I'm wondering is, is there a way for me to override the implementation of the len()
function for my custom type without having to export the array?
Thanks.
答案1
得分: 19
不。但是你可以为你的类型添加一个Len()
方法。
英文:
No. You can however add a Len()
method to your type.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论