Loading...
匿名Union/Struct最近看代码,看到了一个union/struct的特性,之前一致没察觉到。写上来记录一下#include <iostream> struct Point { union { float data[3]; struct { float x; float y; float z; }; };...