Differences between I ++ and ++ I -- suffix operator Efficiency Research -- operator

Source: Internet
Author: User

Differences between I ++ and ++ I -- suffix operator Efficiency Research -- operator
Differences between I ++ and ++ I


There is no big difference in using built-in types, such as int.


If the object is constructed by class, the difference is quite large.


We must first understand their respective ways of working.


++ I is a prefix operator, which first increments and then returns the value.

I ++ is called a suffix operator. It creates a copy, increments itself, and returns a copy.


The following explains why I ++ is so inefficient.

We can reload the ++ suffix operator to find the problem.


Class Time {public: Time operator ++ (int); Time operator ++ (); private: int sec ;}; Time: operator ++ () {sec ++; return (* this);} Time: operator ++ (int) {Time temp (* this); sec ++; return temp ;}

You can see that in C ++, the prefix reload does not need to create a new object, but the suffix is different. If the suffix needs to return the original value, you have to save a copy to return it, this is the root cause of low I ++ efficiency.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.