ภาษาหลัก
การเข้าถึงตัวแจงนับโดยใช้::
:
template<int> struct int_ { };
template<typename T> bool isCpp0xImpl(int_<T::X>*) { return true; }
template<typename T> bool isCpp0xImpl(...) { return false; }
enum A { X };
bool isCpp0x() {
return isCpp0xImpl<A>(0);
}
คุณยังสามารถใช้คำหลักใหม่ในทางที่ผิด
struct a { };
struct b { a a1, a2; };
struct c : a {
static b constexpr (a());
};
bool isCpp0x() {
return (sizeof c::a()) == sizeof(b);
}
นอกจากนี้ความจริงที่ว่าตัวอักษรสตริงไม่ได้แปลงเป็นไฟล์ char*
bool isCpp0xImpl(...) { return true; }
bool isCpp0xImpl(char*) { return false; }
bool isCpp0x() { return isCpp0xImpl(""); }
ฉันไม่รู้ว่าคุณมีแนวโน้มที่จะใช้งานได้จริงแค่ไหน หนึ่งที่หาประโยชน์auto
struct x { x(int z = 0):z(z) { } int z; } y(1);
bool isCpp0x() {
auto x(y);
return (y.z == 1);
}
ต่อไปนี้ขึ้นอยู่กับข้อเท็จจริงที่operator int&&
เป็นฟังก์ชันการแปลงเป็นint&&
ใน C ++ 0x และการแปลงint
ตามด้วยตรรกะและใน C ++ 03
struct Y { bool x1, x2; };
struct A {
operator int();
template<typename T> operator T();
bool operator+();
} a;
Y operator+(bool, A);
bool isCpp0x() {
return sizeof(&A::operator int&& +a) == sizeof(Y);
}
กรณีทดสอบนั้นใช้ไม่ได้กับ C ++ 0x ใน GCC (ดูเหมือนบั๊ก) และไม่ทำงานในโหมด C ++ 03 สำหรับเสียงดัง ประชาสัมพันธ์เสียงดังกราวได้รับการยื่น
การแก้ไขการปรับเปลี่ยนชื่อคลาสของเทมเพลตใน C ++ 11:
template<typename T>
bool g(long) { return false; }
template<template<typename> class>
bool g(int) { return true; }
template<typename T>
struct A {
static bool doIt() {
return g<A>(0);
}
};
bool isCpp0x() {
return A<void>::doIt();
}
สามารถใช้ "ตรวจสอบว่านี่คือ C ++ 03 หรือ C ++ 0x" สองสามรายการเพื่อแสดงการเปลี่ยนแปลงที่ไม่สมบูรณ์ ต่อไปนี้เป็นกรณีทดสอบที่ปรับแต่งซึ่งในตอนแรกใช้เพื่อแสดงการเปลี่ยนแปลงดังกล่าว แต่ตอนนี้ใช้เพื่อทดสอบ C ++ 0x หรือ C ++ 03
struct X { };
struct Y { X x1, x2; };
struct A { static X B(int); };
typedef A B;
struct C : A {
using ::B::B; // (inheriting constructor in c++0x)
static Y B(...);
};
bool isCpp0x() { return (sizeof C::B(0)) == sizeof(Y); }
ห้องสมุดมาตรฐาน
การตรวจจับการขาดoperator void*
ใน C ++ 0x 'std::basic_ios
struct E { E(std::ostream &) { } };
template<typename T>
bool isCpp0xImpl(E, T) { return true; }
bool isCpp0xImpl(void*, int) { return false; }
bool isCpp0x() {
return isCpp0xImpl(std::cout, 0);
}