Kernsprache
Zugriff auf einen Enumerator mit ::
:
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);
}
Sie können die neuen Schlüsselwörter auch missbrauchen
struct a { };
struct b { a a1, a2; };
struct c : a {
static b constexpr (a());
};
bool isCpp0x() {
return (sizeof c::a()) == sizeof(b);
}
Auch die Tatsache, dass String-Literale nicht mehr konvertiert werden char*
bool isCpp0xImpl(...) { return true; }
bool isCpp0xImpl(char*) { return false; }
bool isCpp0x() { return isCpp0xImpl(""); }
Ich weiß jedoch nicht, wie wahrscheinlich es ist, dass Sie an einer echten Implementierung arbeiten. Eine, die ausnutztauto
struct x { x(int z = 0):z(z) { } int z; } y(1);
bool isCpp0x() {
auto x(y);
return (y.z == 1);
}
Das Folgende basiert auf der Tatsache, dass operator int&&
es sich um eine Konvertierungsfunktion int&&
in C ++ 0x und eine Konvertierung in int
gefolgt von logisch und in C ++ 03 handelt
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);
}
Dieser Testfall funktioniert nicht für C ++ 0x in GCC (sieht aus wie ein Fehler) und funktioniert nicht im C ++ 03-Modus für Clang. Eine klirrende PR wurde eingereicht .
Die modifizierte Behandlung injizierter Klassennamen von Vorlagen in 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();
}
Ein paar "Erkennen, ob dies C ++ 03 oder C ++ 0x ist" können verwendet werden, um wichtige Änderungen zu demonstrieren. Das Folgende ist ein optimierter Testfall, der ursprünglich verwendet wurde, um eine solche Änderung zu demonstrieren, jetzt aber zum Testen auf C ++ 0x oder C ++ 03 verwendet wird.
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); }
Standardbibliothek
Erkennen des Mangels an operator void*
in 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);
}