2
คัดลอกและย้ายเพื่อนอัตโนมัติสร้างหรือไม่
เราสามารถเข้าถึงตัวแปรส่วนตัวของคลาสอื่นได้เมื่อเรากำหนด copy หรือ move constructors C ++ ทำให้พวกเขาfriendกันโดยอัตโนมัติหรือไม่? ตัวอย่างเช่น: my_str::my_str(my_str&& m) { size_ = m.size_; //accessing private variable another my_str class buff_ = m.buff_; //accessing private variable another my_str class m.buff_ = nullptr; m.size_ = 0; }
14
c++
friend-class