{ va_list args; va_start(args, n); while(n>0) { printf("%d\n", ... 從這裡可以看出va_list其實只是一個char*,它將整串引數當成一個位元陣列; ...
確定! 回上一頁