Çekirdek Dil
Bir numaralandırıcıya aşağıdakileri kullanarak erişim ::
:
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);
}
Yeni anahtar kelimeleri de kötüye kullanabilirsiniz
struct a { };
struct b { a a1, a2; };
struct c : a {
static b constexpr (a());
};
bool isCpp0x() {
return (sizeof c::a()) == sizeof(b);
}
Ayrıca, dize değişmezlerinin artık char*
bool isCpp0xImpl(...) { return true; }
bool isCpp0xImpl(char*) { return false; }
bool isCpp0x() { return isCpp0xImpl(""); }
Yine de bunu gerçek bir uygulama üzerinde çalıştırma olasılığınız nedir bilmiyorum. Sömüren biriauto
struct x { x(int z = 0):z(z) { } int z; } y(1);
bool isCpp0x() {
auto x(y);
return (y.z == 1);
}
Aşağıdakiler, C ++ 0x'e operator int&&
bir dönüştürme işlevi int&&
ve int
ardından mantıksal-ve C ++ 03'te bir dönüştürme olduğu gerçeğine dayanmaktadır.
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);
}
Bu test durumu GCC'de C ++ 0x için çalışmaz (bir hata gibi görünür) ve clang için C ++ 03 modunda çalışmaz. Bir clang PR dosyası açıldı .
Enjekte sınıf isimleri değiştirilmiş tedavisi C ++ 11 şablonları:
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();
}
Değişiklikleri göstermek için birkaç "bunun C ++ 03 veya C ++ 0x olup olmadığını algıla" kullanılabilir. Aşağıda, başlangıçta böyle bir değişikliği göstermek için kullanılan, ancak şimdi C ++ 0x veya C ++ 03'ü test etmek için kullanılan ince ayarlı bir test senaryosu var.
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); }
Standart Kitaplık
operator void*
C ++ 0x'in eksikliğini tespit etmestd::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);
}