struct A{ int a; int b; }; A x[100]; struct B{ int a[100]; int b[100]; } y; 今天面试遇到的问题:假如要对a数组和b数组进行运算,如a[0]和b[0]运算,a[1]和b[1]运算...,上面两种方式哪种更快? 求大佬解答。