2012-03-26 11 views
6

Po wykonaniu kilku eksperymentów z semantyką ruchu z utworzonym przeze mnie typem tablicy, zastanawiam się, dlaczego kompilator C++ Microsoftu wywołuje konstruktor ruchu po powrocie z metody według wartości, podczas gdy kompilator Clang przesyła kopię wszystkim razem?Przenoszenie semantyki w MS C++ kontra Clang

Czy to prawidłowe lub nieprawidłowe zachowanie z Clang? lub poprawne zachowanie Microsoft?

#include <algorithm> 
#include <iostream> 

template<typename T> 
class Array { 
    public: 
    template<typename E> 
    class ArrayIterator { 
     public: 
     ArrayIterator(Array<E>& elements, int index) : position_(index), elements_(elements) { 
     } 

     T& operator *() { 
      return elements_[position_]; 
     } 

     ArrayIterator& operator++() { 
      position_++; 
      return *this; 
     } 

     ArrayIterator operator++ (int) { 
      return ArrayIterator(elements_, ++position_); 
     } 

     bool operator != (ArrayIterator const & other) { 
      return position_ != other.position_; 
     } 

     private: 
     int position_; 
     Array<E>& elements_; 
    }; 
    typedef ArrayIterator<T> iterator; 
    Array(); 
    explicit Array(int size); 
    ~Array(); 
    Array(const Array& other); 
    Array(Array&& other); 
    Array<T>& operator = (Array other); 
    T& operator[](int index); 
    int size() const; 
    iterator begin(); 
    iterator end(); 


    private: 
    void internal_swap(Array& other); 
    T *elements_; 
    int length_; 
}; 

template<typename T> 
Array<T>::Array() { 
    length_ = 0; 
    elements_ = 0; 
} 

template<typename T> 
Array<T>::Array(int size) { 
    elements_ = new T[size]; 
    length_ = size; 
} 

template<typename T> 
Array<T>::~Array() { 
    delete[] elements_; 
    std::cout << "Destroy...." << std::endl; 
} 

template<typename T> 
Array<T>::Array(const Array<T>& other) { 
    std::cout << "copy ctor" << std::endl; 

    length_ = other.size(); 

    T *elements = new T[size()]; 
    std::copy(other.elements_, other.elements_ + other.size(), elements); 

    elements_ = elements; 
} 

template<typename T> 
Array<T>::Array(Array<T>&& other) { 
    std::cout << "move ctor" << std::endl; 
    length_ = other.size(); 
    T* oelements = other.elements_; 
    other.elements_ = 0; 
    this->elements_ = oelements; 

} 

template<typename T> 
Array<T>& Array<T>::operator = (Array other) { 
    internal_swap(other); 
    return *this; 
} 

template<typename T> 
T& Array<T>::operator[](int index) { 
    return elements_[index]; 
} 

template<typename T> 
int Array<T>::size() const { 
    return length_; 
} 

template<typename T> 
typename Array<T>::iterator Array<T>::begin() { 
    return iterator(*this, 0); 
} 

template<typename T> 
typename Array<T>::iterator Array<T>::end() { 
    return iterator(*this, size()); 
}; 

template<typename T> 
void Array<T>::internal_swap(Array& other){ 
    T* oelements = other.elements_; 
    other.elements_ = this->elements_; 
    this->elements_ = oelements; 
} 

Array<int> get_values(int x); 

int main(int argc, const char *argv[]) { 

    Array<int> a = get_values(2); 

    for (Array<int>::iterator i = a.begin(); i != a.end(); ++i) { 
     std::cout << *i << std::endl; 
    } 

    return 0; 
} 

Array<int> get_values(int x) { 
    Array<int> a(10); 


    if(x == 1) return a; 


    for (int i = 0; i <= 9; i++) { 
     a[i] = 1 + i; 
    } 

    return a; 
} 
+0

Jakie są flagi kompilatora dla MSVC i Clang? – Xeo

+0

Wszystkie wartości domyślne z XCode 4.3 i VS 2010. –

+2

Tak, ale domyślnie w VS jest tryb debugowania, czyli brak optymalizacji ... Powiedzmy więc, że jest trochę inaczej: czy kompilowano oba w trybie wydania/z włączonymi optymalizacjami? – Xeo

Odpowiedz

8

Kopiowanie elizja jest jednym z tych rzadkich optymalizacje gdzie średnia pozwala na różne zachowania zaobserwowania (to nie podlega regule jako-if), ale nie jest niezdefiniowane zachowanie.

To, czy jakikolwiek konstruktor kopiowania lub przenoszenia zostanie wywołany lub zmieniony w tym kontekście, jest nieokreślony, a różne kompilatory mogą zachowywać się inaczej i obie są poprawne.

+0

Myślałem, że ctor preferowany jest w ruchu? –

+3

@Blair: O nie, zbudowanie obiektu we właściwym miejscu na początek zdecydowanie woli przenieść go i zniszczyć stary. –

+0

Tak więc Twoje powiedzenie Move jest używane tylko wtedy, gdy nie można użyć RVO/NRVO? czyli w ostateczności? –