Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8956873
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:51:51+00:00 2026-06-15T14:51:51+00:00

I saw this C++ code as part of a larger example: Date &Date::operator++() {

  • 0

I saw this C++ code as part of a larger example:

Date &Date::operator++()
{
    helpIncrement();
    return *this;
}

Date Date::operator++( int )
{
    Date temp = *this;
    helpIncrement();
    return temp;
}

Firstly if Date temp = *this, then I dont see why the return type is any different for these two functions? One returns *this, the other returns temp, which is assigned to *this?

Secondly, why does the parameter for the second function not have a variable name?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T14:51:52+00:00Added an answer on June 15, 2026 at 2:51 pm

    The first returns the object pointed to by this as a reference. That is, the returned object is the object that operator++ is being called on. However, when you do Date temp = *this, temp is copy constructed from the value of *this. It is in turn then copied out of the function. What you get from the second function is a whole new object. Why the functions have this difference is explained in the answer to your second question.

    There are two types of increment operator – one is post-increment (i++) and the other is pre-increment (++i). To be able to overload each of them individually (despite them having the same name, operator++), the C++ standard specifies that the post-increment operator takes an argument of type int with unspecified value. This is simply so that you can overload the function for each use of the operator. Since you’re unlikely to want to use that unspecified value, you may as well just leave it unnamed.

    Now, the expected behaviour of the pre-increment operator is that it increments the object and evaluates to then be that object. That’s why it returns a reference in this case. The expected behaviour of post-increment is that it keeps a copy of the original value, increments the object and then returns the original value. Hence, it returns the temp copy.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I saw this code snippet const volatile int * volatile * const X; but
I saw this C# using statement in a code example: using StringFormat=System.Drawing.StringFormat; What's that
I saw this in a part that never gets called in a coworker's code:
I saw this code snippet during our lab and it actually compiles in MSVC2008
I saw this code in http://www.cise.ufl.edu/~manuel/obfuscate/obfuscate.html (http://www.cise.ufl.edu/~manuel/obfuscate/savastio) website.But this code is very very crazy.
Today i saw this code, that was running in node.js environment. (>node.exe test.js) var
I just saw this code while studying the wordpress source code (PHP), You can
I'm new to ruby, and I saw this code snippet 1|2 and it returns
While I'm reading boost/shared_ptr.hpp, i saw this code: // generated copy constructor, destructor are
I saw this bit of code on the interents somewhere. I'm wondering what the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.