void pointerTest(int num) {num = 20; }int main() {int num = 10;pointerTest(num);LOGI("%d", num) // 打印出来的结果是 10return 0...