摘要: 测试代码structpass.cpp struct Vertex { int x, y, z; }; Vertex getVertex(Vertex a) { a.x = 111; a.z = 222; return a; } int main() { Vertex t; t.x = 1; t.y 阅读全文
posted @ 2022-09-23 00:15 哇哩顾得 阅读(90) 评论(0) 推荐(0) 编辑