Język podstawowy
Dostęp do modułu wyliczającego przy użyciu ::
:
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);
}
Możesz także nadużywać nowych słów kluczowych
struct a { };
struct b { a a1, a2; };
struct c : a {
static b constexpr (a());
};
bool isCpp0x() {
return (sizeof c::a()) == sizeof(b);
}
Ponadto fakt, że literały ciągów nie są już konwertowane na char*
bool isCpp0xImpl(...) { return true; }
bool isCpp0xImpl(char*) { return false; }
bool isCpp0x() { return isCpp0xImpl(""); }
Nie wiem jednak, jak prawdopodobne jest, że będzie to działać na prawdziwej implementacji. Taki, który wykorzystujeauto
struct x { x(int z = 0):z(z) { } int z; } y(1);
bool isCpp0x() {
auto x(y);
return (y.z == 1);
}
Poniższe jest oparte na fakcie, że operator int&&
jest to funkcja konwersji na int&&
w C ++ 0x i konwersja na, int
po której następuje logiczna - i w 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);
}
Ten przypadek testowy nie działa dla C ++ 0x w GCC (wygląda na błąd) i nie działa w trybie C ++ 03 dla clang. Zgłoszono clang PR .
Zmodyfikowane leczenie wstrzyknięto nazw klas szablonów w 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();
}
Do zademonstrowania istotnych zmian można użyć kilku opcji „wykryj, czy jest to C ++ 03 czy C ++ 0x”. Poniżej znajduje się zmodyfikowany przypadek testowy, który początkowo był używany do zademonstrowania takiej zmiany, ale teraz jest używany do testowania pod kątem C ++ 0x lub 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); }
Biblioteka standardowa
Wykrywanie braku operator void*
w 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);
}