单行方法并分别更新每个变量有什么用?这是否将 3 个内存写入操作优化为一个?
或者有没有其他方法可以通过单个内存写入操作将所有值写入结构中?
theTest[0] = (test_t){7,8,9};
(and)
theTest[0].var1 = 7
theTest[0].var2 = 8
theTest[0].var3 = 9
typedef struct
{
int var1;
int var2;
int var3;
} test_t;
test_t theTest[2];