void swap2(int *px,int *py){ int *t; t=px; px=py; py=t;}swap2函数的功能是交换两个指针指向的值,函数内部都是指针的操作,根本没有改变指针指向的值,所以px和py指向的值没有交换。