1.len:用来求长度,比如string、array、slice、map、channel

2.new:用来分配内存,主要用来分配值类型,比如int、float32、struct等等,返回的是指针

3.make:用来分配内存,主要用来分配引用类型,比如chan、map、slice