golang interface类型转string等其他类型

inter 是interface类型,转化为string类型是:

        str := inter .(string)

转为其他类型也类似

你可能感兴趣的:(golang)