在C++中的使用比较运算符时,i++与i+1有什么区别?

发布于 2022-09-07 08:26:21 字数 633 浏览 14 评论 0

这是用C++写的数组线性表的插入函数,其中第二个if条件中,如果用 listSize+1 是没有问题的,如果用 listSize++ 程序执行是有错误的(非编译错误)

void insert(int location, elementtype theElement)
    {
        if(location > arrayLength - 1)
            cout<<"List is full."<<endl;
        if(location > (listSize+1) || location < 1 )
            cout<<"Please enter correct value."<<endl;
        else
        {
            for(int n = listSize; n >= location; n--)
                elements[n++] = elements[n];
            elements[location] = theElement;
            listSize++;
        }
    }

i++和i+1在比较运算符中有什么区别吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟酉 2022-09-14 08:26:21

The statement:

    if(location > listSize++ || location < 1 )
        cout<<"Please enter correct value."<<endl;

can be considered like

    if(location > listSize || location < 1 )
    {
        ++listSize;
        cout<<"Please enter correct value."<<endl;
    }
    

From the C++ Standard (5.2.6 Increment and decrement)

1 The value of a postfix ++ expression is the value of its operand. [ Note: the value obtained is a copy of the original value —end note ]...

So, it will change listSize's value(because of ++listSize;), which is not you hope to see.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文