Tôi đang chuyển thư viện C sang Go. Hàm AC (với varargs) được định nghĩa như thế này:
curl_easy_setopt(CURL *curl, CURLoption option, ...);
Vì vậy, tôi đã tạo các hàm wrapper C:
curl_wrapper_easy_setopt_str(CURL *curl, CURLoption option, char* param);
curl_wrapper_easy_setopt_long(CURL *curl, CURLoption option, long param);
Nếu tôi định nghĩa hàm trong Go như thế này:
func (e *Easy)SetOption(option Option, param string) {
e.code = Code(C.curl_wrapper_easy_setopt_str(e.curl, C.CURLoption(option), C.CString(param)))
}
func (e *Easy)SetOption(option Option, param long) {
e.code = Code(C.curl_wrapper_easy_setopt_long(e.curl, C.CURLoption(option), C.long(param)))
}
Trình biên dịch Go phàn nàn:
*Easy·SetOption redeclared in this block
Vậy Go có hỗ trợ quá tải hàm (phương thức) không, hay lỗi này có nghĩa là gì khác?