有如下的Java代码 ``` class Vec { public final double x, y, z; // position, also color (r,g,b) public static final Vec Zero = new Vec(0, 0, 0); } ``` 我使用GO的struct模拟上面的代码 ``` type Vec struct { x, y, z float64 Zero Vec = &Vec{0, 0, 0} //这样的实现不支持,该如何实现 } ``` 但GO好像不支持在struct中编写这样的语句 Zero Vec = &Vec{0, 0, 0}, 请问该如何实现?