Partilhar via


Como: gravar um construtor de movimentação

Este tópico descreve como escrever um move construtor e um operador de atribuição de mover para uma classe C++.Um construtor mover permite implementar a semântica de movimentação, que pode melhorar significativamente o desempenho dos aplicativos.Para obter mais informações sobre a semântica de movimentação, consulte Declarador de referência Rvalue: & &.

Este tópico se baseia a seguinte classe C++, MemoryBlock, que gerencia um buffer de memória.

// MemoryBlock.h
#pragma once
#include <iostream>
#include <algorithm>

class MemoryBlock
{
public:

   // Simple constructor that initializes the resource.
   explicit MemoryBlock(size_t length)
      : _length(length)
      , _data(new int[length])
   {
      std::cout << "In MemoryBlock(size_t). length = "
                << _length << "." << std::endl;
   }

   // Destructor.
   ~MemoryBlock()
   {
      std::cout << "In ~MemoryBlock(). length = "
                << _length << ".";
      
      if (_data != NULL)
      {
         std::cout << " Deleting resource.";
         // Delete the resource.
         delete[] _data;
      }

      std::cout << std::endl;
   }

   // Copy constructor.
   MemoryBlock(const MemoryBlock& other)
      : _length(other._length)
      , _data(new int[other._length])
   {
      std::cout << "In MemoryBlock(const MemoryBlock&). length = " 
                << other._length << ". Copying resource." << std::endl;

      std::copy(other._data, other._data + _length, _data);
   }

   // Copy assignment operator.
   MemoryBlock& operator=(const MemoryBlock& other)
   {
      std::cout << "In operator=(const MemoryBlock&). length = " 
                << other._length << ". Copying resource." << std::endl;

      if (this != &other)
      {
         // Free the existing resource.
         delete[] _data;

         _length = other._length;
         _data = new int[_length];
         std::copy(other._data, other._data + _length, _data);
      }
      return *this;
   }

   // Retrieves the length of the data resource.
   size_t Length() const
   {
      return _length;
   }

private:
   size_t _length; // The length of the resource.
   int* _data; // The resource.
};

Os procedimentos a seguir descrevem como escrever um construtor de mover e um operador de atribuição de mover para o exemplo de classe do C++.

Para criar um construtor de mover para uma classe C++

  1. Defina um método construtor vazio que leva uma referência rvalue ao tipo de classe como seu parâmetro, como demonstrado no exemplo a seguir:

    MemoryBlock(MemoryBlock&& other)
       : _data(NULL)
       , _length(0)
    {
    }
    
  2. No construtor mover, atribua os membros de dados de classe de objeto de origem para o objeto que está sendo construído:

    _data = other._data;
    _length = other._length;
    
  3. Atribua os membros de dados do objeto de origem para os valores padrão.Isso impede que o destruidor liberando recursos (como memória) várias vezes:

    other._data = NULL;
    other._length = 0;
    

Para criar um operador de atribuição de mover para uma classe C++

  1. Defina um operador de atribuição vazia que usa uma referência rvalue ao tipo de classe como seu parâmetro e retorna uma referência ao tipo de classe, conforme demonstrado no exemplo a seguir:

    MemoryBlock& operator=(MemoryBlock&& other)
    {
    }
    
  2. No operador de atribuição mover, adicione uma instrução condicional que não executa nenhuma operação se você tentar atribuir o objeto para si mesmo.

    if (this != &other)
    {
    }
    
  3. A instrução condicional, libere os recursos (como memória) do objeto que está sendo atribuído a.

    O exemplo a seguir libera o _data membro do objeto que está sendo atribuído a:

    // Free the existing resource.
    delete[] _data;
    

    Siga as etapas 2 e 3 no primeiro procedimento para transferir os membros de dados do objeto de origem para o objeto que está sendo construído:

    // Copy the data pointer and its length from the 
    // source object.
    _data = other._data;
    _length = other._length;
    
    // Release the data pointer from the source object so that
    // the destructor does not free the memory multiple times.
    other._data = NULL;
    other._length = 0;
    
  4. Retorne uma referência ao objeto atual, conforme mostrado no exemplo a seguir:

    return *this;
    

Exemplo

O exemplo a seguir mostra o completo move construtor e move o operador de atribuição para o MemoryBlock classe:

// Move constructor.
MemoryBlock(MemoryBlock&& other)
   : _data(NULL)
   , _length(0)
{
   std::cout << "In MemoryBlock(MemoryBlock&&). length = " 
             << other._length << ". Moving resource." << std::endl;

   // Copy the data pointer and its length from the 
   // source object.
   _data = other._data;
   _length = other._length;

   // Release the data pointer from the source object so that
   // the destructor does not free the memory multiple times.
   other._data = NULL;
   other._length = 0;
}

// Move assignment operator.
MemoryBlock& operator=(MemoryBlock&& other)
{
   std::cout << "In operator=(MemoryBlock&&). length = " 
             << other._length << "." << std::endl;

   if (this != &other)
   {
      // Free the existing resource.
      delete[] _data;

      // Copy the data pointer and its length from the 
      // source object.
      _data = other._data;
      _length = other._length;

      // Release the data pointer from the source object so that
      // the destructor does not free the memory multiple times.
      other._data = NULL;
      other._length = 0;
   }
   return *this;
}

O exemplo a seguir mostra como mover semântica pode melhorar o desempenho dos aplicativos.O exemplo adiciona dois elementos a um objeto de vetor e insere um novo elemento entre os dois elementos existentes.Em Visual C++ 2010, o vector usa classe move semântica para executar a operação de inserção com eficiência ao mover os elementos do vetor em vez de copiá-los.

// rvalue-references-move-semantics.cpp
// compile with: /EHsc
#include "MemoryBlock.h"
#include <vector>

using namespace std;

int main()
{
   // Create a vector object and add a few elements to it.
   vector<MemoryBlock> v;
   v.push_back(MemoryBlock(25));
   v.push_back(MemoryBlock(75));

   // Insert a new element into the second position of the vector.
   v.insert(v.begin() + 1, MemoryBlock(50));
}

Esse exemplo produz a seguinte saída.

In MemoryBlock(size_t). length = 25.
In MemoryBlock(MemoryBlock&&). length = 25. Moving resource.
In ~MemoryBlock(). length = 0.
In MemoryBlock(size_t). length = 75.
In MemoryBlock(MemoryBlock&&). length = 25. Moving resource.
In ~MemoryBlock(). length = 0.
In MemoryBlock(MemoryBlock&&). length = 75. Moving resource.
In ~MemoryBlock(). length = 0.
In MemoryBlock(size_t). length = 50.
In MemoryBlock(MemoryBlock&&). length = 50. Moving resource.
In MemoryBlock(MemoryBlock&&). length = 50. Moving resource.
In operator=(MemoryBlock&&). length = 75.
In operator=(MemoryBlock&&). length = 50.
In ~MemoryBlock(). length = 0.
In ~MemoryBlock(). length = 0.
In ~MemoryBlock(). length = 25. Deleting resource.
In ~MemoryBlock(). length = 50. Deleting resource.
In ~MemoryBlock(). length = 75. Deleting resource.

Antes de Visual C++ 2010, este exemplo produz a saída a seguir:

In MemoryBlock(size_t). length = 25.
In MemoryBlock(const MemoryBlock&). length = 25. Copying resource.
In ~MemoryBlock(). length = 25. Deleting resource.
In MemoryBlock(size_t). length = 75.
In MemoryBlock(const MemoryBlock&). length = 25. Copying resource.
In ~MemoryBlock(). length = 25. Deleting resource.
In MemoryBlock(const MemoryBlock&). length = 75. Copying resource.
In ~MemoryBlock(). length = 75. Deleting resource.
In MemoryBlock(size_t). length = 50.
In MemoryBlock(const MemoryBlock&). length = 50. Copying resource.
In MemoryBlock(const MemoryBlock&). length = 50. Copying resource.
In operator=(const MemoryBlock&). length = 75. Copying resource.
In operator=(const MemoryBlock&). length = 50. Copying resource.
In ~MemoryBlock(). length = 50. Deleting resource.
In ~MemoryBlock(). length = 50. Deleting resource.
In ~MemoryBlock(). length = 25. Deleting resource.
In ~MemoryBlock(). length = 50. Deleting resource.
In ~MemoryBlock(). length = 75. Deleting resource.

A versão desse exemplo que usa move semântica é mais eficiente do que a versão que não use mover semântica porque executa menos cópia, alocação de memória e operações de desalocação de memória.

Programação robusta

Para evitar perdas de recursos, sempre Libere recursos (como memória, identificadores de arquivo e soquetes) no operador de atribuição de mover.

Para evitar a destruição irrecuperável de recursos, manipula corretamente self-assignment no operador de atribuição de mover.

Se você fornecer um construtor de mover e um operador de atribuição de mover sua classe, você pode eliminar o código redundante, escrevendo o construtor de movimentação para chamar o operador de atribuição de mover.O exemplo a seguir mostra uma versão revisada do construtor mover que chama o operador de atribuição de movimentação:

// Move constructor.
MemoryBlock(MemoryBlock&& other)
   : _data(NULL)
   , _length(0)
{
   *this = std::move(other);
}

O std::move função preserva a propriedade rvalue a other parâmetro.

Consulte também

Referência

Declarador de referência Rvalue: & &

Outros recursos

<utility> move