是否有类型特性, 或者可以写入类型特性 is_scoped_enum<T>
, 以便:
- if
T
is a scoped enumeration,is_scoped_enum<T>::value
istrue
and - if
T
is any other type,is_scoped_enum<T>::value
is false
是否有类型特性, 或者可以写入类型特性 is_scoped_enum<T>
, 以便:
T
is a scoped enumeration, is_scoped_enum<T>::value
is true
andT
is any other type, is_scoped_enum<T>::value
is false我认为测试如果它是一个 enum 和 不隐含的可转换到基本类型, 应该可以做这个把戏 。
template <typename T, bool B = std::is_enum<T>::value>
struct is_scoped_enum : std::false_type {};
template <typename T>
struct is_scoped_enum<T, true>
: std::integral_constant<bool,
!std::is_convertible<T, typename std::underlying_type<T>::type>::value> {};
C++23 将提供 is_scoped_enum , 一旦实施后可以使用。 请参见此文档链接 : < a href="https://en.cppreference.com/w/cpp/types/is_scorped_enum" rel= "nofollow norefererr" > is_coscosd_enum 。 我不认为 cingg 支持此功能( 见 < a href=" https://clang.llvm.org/cxx_statical.html" rel=" nofollown noreferr" > clang status 。
我现在使用略微简化的上述答案(使用 _v和_t)以及执行 is_understant :
// C++ 23 should include is_scoped_enum and to_underlying so the following
// code can be removed:
template<typename T, bool B = std::is_enum_v<T>>
struct is_scoped_enum : std::false_type {};
template<typename T>
struct is_scoped_enum<T, true>
: std::integral_constant<
bool, !std::is_convertible_v<T, std::underlying_type_t<T>>> {};
template<typename T>
inline constexpr bool is_scoped_enum_v = is_scoped_enum<T>::value;
template<typename T, std::enable_if_t<is_scoped_enum_v<T>, int> = 0>
[[nodiscard]] constexpr auto to_underlying(T x) noexcept {
return static_cast<std::underlying_type_t<T>>(x);
}
more of original content deleted to make question easier to reference: So I have a House class that has a method House.buy(Person p), causing the person to buy the house. I want to know if its ...
I m writing a method which determines the highest value in a .NET enumeration so I can create a BitArray with one bit for each enum value: pressedKeys = new BitArray(highestValueInEnum<Keys>());...
To convert Enum to Enumerable ,I use public enum Flags { Trivial=1, Minor, Major, Critical } IEnumerable<int> n = Enumerable.Range((int)Flags.Trivial, (...
A couple of friends was discussing the use of inheritance and how to check if a subclass is of a specific type and we decided to post it here on Stack. The debate was about if you should implement a ...
I try to keep things as local as possible, so I put enums at class scope, even if they are shared between two classes (I put it in the class that "goes better" with it.) This has worked out great, but ...
I have an enum class like the following: public enum Letter { OMEGA_LETTER("Omega"), GAMMA_LETTER("Gamma"), BETA_LETTER("Beta"), ALPHA_LETTER("Alpha"), private final String ...
I have an enum declared in my code as: enum REMOTE_CONN { REMOTE_CONN_DEFAULT = 0, REMOTE_CONN_EX_MAN = 10000, REMOTE_CONN_SD_ANNOUNCE, REMOTE_CONN_SD_IO, REMOTE_CONN_AL, ...
I m wondering if it is possible to have WCF make sure that the DataContracts on both sides of a connection are exactly the same (and throw an exception when trying to connect if they are not). For ...