Golang Tips-Interface function

Source: Internet
Author: User

Interface function: Refers to the implementation of the interface with a function, so that the call is very simple, this function is an interface type function, this method is applicable to only one function of the interface.

Defines a type that defines only the parameter list of a function, and the function argument list is consistent with the method defined by the interface:

Type Handlerfunc func (k, v interface{})

And then this type goes to implement the interface, the implemented function calls itself

The Func (HF Handlerfunc) do (k, v interface{}) {HF (k, V)  ///interface is called itself in the implementation. This makes it possible to use functions to implement interface functions, rather than defining types and implementing interfaces to implement interface functions}

This allows you to implement interface functions in two ways

Func each (MP map[interface{}]interface{}, H Handler) {//pass in an instance of a type that implements the Handler interface}func Eachfunc (MP map[interface{}] interface{}, Handlerfunc Handlerfunc)  {//passed in a parameter list as required by the interface to implement the function}

The second way can only pass in a function, only requires the same parameter list, function name can be random, type is not new definition, easy to use.

The complete code is as follows;

Package Mainimport ' FMT ' type Handler interface {Do (k, v interface{})}type handlerfunc func (k, v interface{}) func (HF Hand Lerfunc) does (K, v interface{}) {HF (k, V)}func each (MP map[interface{}]interface{}, h Handler) {if MP! = Nil && len ( MP) > 0 {for k, V: = Range MP {h.do (k, v)}}}func Eachfunc (MP map[interface{}]interface{}, Handlerfunc Handlerfunc)  {if MP! = Nil && len (MP) > 0 {for k, V: = Range MP {Handlerfunc (k, v)}}}func Selfinfo (k, v interface{}) {FMT. Printf ("My name is%s, I am%d years old", K, v) fmt. PRINTLN ()}func main () {MP: = map[interface{}]interface{}{"Gaoziwen": "Zhangsan": "Lisi": 28,}f: = Selfinfoeachfunc (MP, F)}
Related Article
Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.