ในบทความนี้ เราจะพูดถึงการทำงาน ไวยากรณ์ และตัวอย่างของเทมเพลต std::is_rvalue_reference ใน C++ STL เทมเพลต is_rvalue_reference ใน C ++ ใช้เพื่อตรวจสอบว่าประเภทที่กำหนดเป็นการอ้างอิง rvalue หรือไม่
ค่า rvalue คืออะไร
Rvalues คือค่าที่อยู่ทางด้านขวาของตัวดำเนินการกำหนด Rvalues คือค่า
การอ้างอิง rvalue คืออะไร
การอ้างอิง Rvalue ถูกระบุด้วยสัญลักษณ์เครื่องหมายคู่ (&&) ใช้เพื่อเริ่มต้นด้วยค่า rvalue เท่านั้น
ไวยากรณ์
int&& a;
ไวยากรณ์
template <class T> is_rvalue_reference;
พารามิเตอร์
เทมเพลตมีได้เฉพาะพารามิเตอร์ประเภท T และตรวจสอบว่าประเภทที่กำหนดเป็นข้อมูลอ้างอิง rvalue หรือไม่
คืนค่า
ส่งคืนค่าบูลีน เป็นจริง หากค่าที่กำหนดเป็นการอ้างอิง rvalue และเป็นเท็จ หากค่าที่ระบุไม่ใช่การอ้างอิง rvalue หรือเมื่อเราอ้างอิงตำแหน่งที่ไม่รู้จัก
ตัวอย่าง
Input: is_rvalue<int&>::value; Output: False Input: is_rvalue<int&&>::value; Output: True
ตัวอย่าง
#include <iostream> #include <type_traits> using namespace std; int main() { cout << std::boolalpha; cout << "Checking for is_lvalue_reference: "; cout << "\nint : "<<is_rvalue_reference<int>::value; cout << "\nint& : "<< is_rvalue_reference<int&>::value; cout << "\nint&&: "<< is_rvalue_reference<int&&>::value; cout << "\nchar : "<<is_rvalue_reference<char>::value; cout << "\nchar& : "<< is_rvalue_reference<char&>::value; cout << "\nchar&&: "<< is_rvalue_reference<char&&>::value; cout << "\nfloat : "<<is_rvalue_reference<float>::value; cout << "\nfloat& : "<< is_rvalue_reference<float&>::value; cout << "\nfloat&&: "<< is_rvalue_reference<float&&>::value; cout << "\ndouble : "<<is_rvalue_reference<double>::value; cout << "\ndouble& : "<< is_rvalue_reference<double&>::value; cout << "\ndouble&&: "<< is_rvalue_reference<double&&>::value; return 0; }
ผลลัพธ์
หากเราเรียกใช้โค้ดข้างต้น มันจะสร้างผลลัพธ์ต่อไปนี้ -
Checking for is_rvalue_reference: int : false int& : false int&&: ture char : false char& : false char&&: ture float : false float& : false float&&: ture double: false double : false double&&: ture
ตัวอย่าง
#include <iostream> #include <type_traits> using namespace std; class TP { }; int main() { cout << std::boolalpha; cout << "Checking for is_lvalue_reference: "; cout << "\nTP class : "<<is_rvalue_reference<TP>::value; cout << "\nTP& : "<< is_rvalue_reference<TP&>::value; cout << "\nTP&&: "<< is_rvalue_reference<TP&&>::value; return 0; }
ผลลัพธ์
หากเราเรียกใช้โค้ดข้างต้น มันจะสร้างผลลัพธ์ต่อไปนี้ -
Checking for is_rvalue_reference: TP class : false TP& : false TP&&: true