Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: perezprograms on August 30, 2021, 04:14:58 am

Title: Object's function = default
Post by: perezprograms on August 30, 2021, 04:14:58 am
Hello everyone,

I am quite new to the forums and I am not sure how to perform the search for the subject. Hopefully, someone may edify me on this process. Please note, I am working with olcNes's header file. In it, there is a pixel class. For some reason, the pixel has an operator equal function. I understand why it would. The confusing part is this function looks like:

Pixel& operator(. . . ) = default;

What does the "= default" do? Does this tell the compiler to replace it with
Pixel& Pixel::operator=( . . . )
{
      if( this != . . . )
      {
          this = & . . . ;
       }
       return *this;
}

Or something else entirely?

Thank you for looking at this post and showing me both what = default means as well as how to search on these forums.
Title: Re: Object's function = default
Post by: stahta01 on August 30, 2021, 04:24:09 am
https://forums.codeblocks.org/index.php/topic,9996.0.html (https://forums.codeblocks.org/index.php/topic,9996.0.html)
Title: Re: Object's function = default
Post by: Pecan on August 30, 2021, 06:46:26 am
Google "c++ operator = default" (without the quotes)

Look at second result.
Title: Re: Object's function = default
Post by: perezprograms on September 11, 2021, 01:46:40 am
Thank you Pecan. That second link is quite useful. Now, I know what "= default means".