5
C ++ Çift Adres Operatörü? (&&)
STL kaynak kodunu okuyorum ve &&adres operatörünün ne yapması gerektiği konusunda hiçbir fikrim yok. İşte bir kod örneği stl_vector.h: vector& operator=(vector&& __x) // <-- Note double ampersands here { // NB: DR 675. this->clear(); this->swap(__x); return *this; } "Adresin Adresi" bir anlam ifade ediyor mu? Neden sadece bir adres yerine …