关于使用指针时出现Segmentation fault的一种原因及处理方法

segmentation fault

void filter(char *p)
{
    char t[80];  // 错误写法:char *p;
    int i = 0, j = 0, k = 0;
    for (i; i < strlen(p); i++)
      if (isalpha(p[i]))
      {
          t[j] = p[i];
          j++;
      }
    for(k; k < j; k++)
    t[k] = toupper(t[k]);
    strcpy(p, t); // 采用错误写法时,此处会发生segmentation fault 
    *(p + k) = '\0';
     
}

对于现在的流行语言C#,JAVA等,都是不允许使用未赋值变量的。
而定义一个指针,不说明指向,是很危险的,相当于未赋值的变量。
方法便是用数组来解决。

另一种情况如下

bool palin(char *p)
{
    char t[80];  // 错误写法:char *t;
    strcpy(t, p); 
    char *head, *tail;
    head = t;
    tail = t + strlen(t) - 1;
    while(head < tail)
    {
        while(!isalpha(*head))
          head++;
        while(!isalpha(*tail))
          tail--;
        *head = toupper(*head);  // 此处出现segmentation fault
        *tail = toupper(*tail);
        if (*head == *tail)
        {
            head++;
            tail--;
        }
        else return false;
    }
    if (head >= tail)
    return true;
    else return false;
}

归根结底,用数组能避免空间分配和变量未赋值的问题。

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值