[C++]什么是POD?

POD意指Plain Old Data,也就是标量性别(Scalar Types)或传统的C Struct型别。POD型别必然拥有trival constructor/destructor/copy/assignment函数,因此我们对这种型别的对象可以采取更加有效率的内存操作

https://github.com/li-zheng-hao
原文地址:https://www.cnblogs.com/lizhenghao126/p/11053750.html