Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you haven't received our response, please do the following:
check your Spam/Junk folder and click the "Not Spam" button for our message.
This way, you won't miss messages from our team in the future.

>
>
>
The std::forward function

The std::forward function

Sep 17 2021

The std::forward function as the std::move function aims at implementing move semantics in C++. The function takes a forwarding reference. According to the T template parameter, std::forward identifies whether an lvalue or an rvalue reference has been passed to it and returns a corresponding kind of reference. std::forward helps to implement perfect forwarding. This mechanism implies that objects passed to the function as lvalue expressions should be copied, and objects passed to the function as rvalue expressions should be moved.

If you assign an rvalue reference to some ref variable, then ref is a named entity. Therefore, its category is lvalue, despite the fact that ref is an rvalue reference. Therefore, for ref copy semantics is used instead of move semantics.

The std::forward function solves this problem. Let's consider the following example:

template <typename T>
void foo(T &&arg)
{
  std::vector<int> var = arg;
  ....
}

std::vector<int> vect(1'000'000, 1);
foo(std::move(vect));

That's what happens in the code fragment:

  • The std::move function is called. It returns an rvalue reference to vect.
  • This reference is passed via a forwarding link to the instance of the foo function as the arg argument. arg is an lvalue object of the rvalue reference type.
  • The var variable is initialized. It calls the copy constructor. vector vect is copied element-by-element to the var variable.

Now let's use std::forward:

template <typename T>
void foo(T &&arg)
{
  std::vector<int> var = std::forward<T>(arg);
  ....
}

std::vector<int> vect(1'000'000, 1);
foo(std::move(vect));

Here's what happens:

  • The std::move function is called. It returns an rvalue reference to vect.
  • This reference is passed via a forwarding link to the instance of the foo function as the arg argument. arg is an lvalue object of the rvalue reference type.
  • The std::forward function is called. It returns an xvalue object with the rvalue reference type.
  • The var variable is initialized. It calls the move constructor. vector vect is moved to the var variable.
Popular related articles


Comments (0)

Next comments next comments
close comment form