ResponseWriter 和 Request Golang 中的 r 和 w
这是一个有点愚蠢的问题,但我想问我可以在 w http.ResponseWriter, r *http 中使用任何名称来代替
还是应该始终是 r
和 w
.Requestr
和 w
?
谢谢
This is a bit a silly question but I wanted to ask that can I use any name instead of r
and w
in the w http.ResponseWriter, r *http.Request
or should it be r
and w
always?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参数名称并不重要,只需遵守函数签名即可
It doesn't matter the name of the parameter, you just need to obey the function signature
我相信您问的是,使用
r
和w
是否符合习惯。我不认为是这样。只要您给参数提供合理的名称(即它们不妨碍可读性)就可以了。I believe what you asking is, is it idomatic to use
r
andw
. I don’t think it is. So long as you give the parameters reasonable names (i.e. they don’t hinder readability) you are fine.