关于C 指针的用法
小甲鱼视频的042讲中 讲了一个函数将两个数调换用了指针 但是最终还是靠取值赋值来实现的 我想能不能直接设一个*temp 然后交换指针呢,经试验是失败的 但是为什么呢?code:#include <errno.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
void swap ( int *q1,int *q2 );
int main()
{
int a,b;
int *ap,*bp;
ap = &a;
bp = &b;
scanf("%d %d",ap,bp);
swap(ap,bp);
printf("%d >%d\n",*ap,*bp);
return 0;
} /* ----- end of function main----- */
void swap ( int *q1,int *q2 )
{
int *temp;
printf("check\n");
if(*q1<*q2)
{
printf("swap\n");
temp = q2;
q2 = q1;
q1 = temp;
}
} /* -----end of function swap----- */
void swap(int *a,int *b)
{
int temp;
temp=*a;
*a=*b;
*b=temp;
}
int main(){
int i,j;
scanf("%d %d",&i,&j);
swap(&i,&j);
return 0;
} YIn 发表于 2014-7-31 22:38
void swap(int *a,int *b)
{
int temp;
但这样改跟普通的赋值有什么区别?感觉还是走了弯路。。 本帖最后由 oggplay 于 2014-8-1 09:59 编辑
Anemone 发表于 2014-8-1 08:52
但这样改跟普通的赋值有什么区别?感觉还是走了弯路。。
必须使用*temp = *q2;
*q2 = *q1;
*q1 =*temp;你的方法是行不通的。原理吗,其实很简单,几个临时地址传来传去,而不是指针指向的值。
oggplay 发表于 2014-8-1 09:03
必须使用你的方法是行不通的。原理吗,其实很简单,几个临时地址传来传去,而不是指针指向的值。
临时地址吗?也就是说指针是临时的? 本帖最后由 xubin2004198 于 2014-8-1 16:17 编辑
你的 ap和 bp 的值根本就没有改变呀
改变的只是函数swap 中的两个临时的指针.不是一回事
那和apbp 是没有关系的,不会传给 他们:titter:
#include <stdio.h>
void swap (int *q1,int *q2);
int main()
{
int a,b;
int *ap,*bp;
ap = &a;
bp = &b;
scanf("%d %d",ap,bp);
swap(ap,bp);
printf("%d >%d\n",*ap,*bp);
return 0;
} /* ----- end of function main----- */
void swap ( int *q1,int *q2 )
{
inttemp;
printf("check\n");
if(*q1<*q2)
{
printf("swap\n");
temp = *q2;
*q2 = *q1;
*q1 = temp;
}
} //改成这样就可以了
xubin2004198 发表于 2014-8-1 10:43
你的 ap和 bp 的值根本就没有改变呀
改变的只是函数swap 中的两个临时的指针.不是一回事
那和apbp 是 ...
我只是想改变指针的指向啊... Anemone 发表于 2014-8-2 17:14
我只是想改变指针的指向啊...
他的意思应该是本地变量的问题
页:
[1]