java :一个新的类型是需要通过new关键字来创建的,例如:
public class Subject { @Override public void rent() { // TODO Auto-generated method stub System.out.println("xxx"); } @Override public void hello(String str) { // TODO Auto-generated method stub System.out.println("我的hello"+str); } }
Subject s = new Subject (); s.hello("xxx");
Golang:支持系统类型来创建新的类型,就是利用其基本的类型创建一个新的类型,其本质还是这个基本类型,例如:
type integer int // 定义类型,integer就相当于int func (a integer) add() { fmt.Println(a) }
这是golang net/http包下的header类型,header的类型本质也还是map // A Header represents the key-value pairs in an HTTP header. type Header map[string][]string // Add adds the key,value pair to the header. // It appends to any existing values associated with key. func (h Header) Add(key,value string) { textproto.MIMEHeader(h).Add(key,value) }