码迷,mamicode.com
首页 > 编程语言 > 详细

关于c++字符串的while(*temp++)

时间:2015-08-30 00:45:24      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

首先,上一段代码

static bool reverse_str(const char *str)
{
    const char *temp=str;
    while(*temp++);
    temp-=2;        //指针返回到字符串的末尾
    while(str<temp)
    {
        if (*str!=*temp)
        {
            return false;
        }
        str++;
        temp--;
    }
    return true;
}

其实它完成的就是回文字符串的 判断。

里面的一句代码:

const char *temp=str;
    while(*temp++);
    temp-=2;        //指针返回到字符串的末尾

这里的

temp-=2;

就是为了回到字符串的末尾字符。这里注意一下就写那个了。

另外,写代码注意规范性

注意函数前面的static关键字

以及函数参数前面的const关键字

关于c++字符串的while(*temp++)

标签:

原文地址:http://www.cnblogs.com/audi-car/p/4770038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!