英文:
Golang encoding/json Marshaler
问题
根据encoding/json
包的文档所述,
> Marshal会递归地遍历值v。
> 如果遇到的值实现了Marshaler接口
> 并且不是nil指针,Marshal会调用其MarshalJSON方法
> 来生成JSON。
在代码的哪个位置执行这个测试呢?也就是说,encoding/json
是如何检查类型为t
的值v
是否实现了Marshaller
接口的?
英文:
As stated in the encoding/json
package documentation,
> Marshal traverses the value v recursively.
> If an encountered value implements the Marshaler interface
> and is not a nil pointer, Marshal calls its MarshalJSON method
> to produce JSON.
Where exactly in the code is this test performed?
In another terms, how does encoding/json
check if a value v
of type t
implements the Marshaller
interface?
答案1
得分: 2
这里:
if t.Implements(marshalerType) {
return marshalerEncoder
}
编辑:
上面的链接已经更新,指向了Go的一个特定版本,正如下面的评论中@dave-c指出的那样。
英文:
Here :
if t.Implements(marshalerType) {
return marshalerEncoder
}
Edit:
The link above has been updated to point to a specific version of Go, as @dave-c pointed out in comments below.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论