C++ 利用模板偏特化和 decltype(()) 识别表达式的值类别
2022/1/19 9:04:34
本文主要是介绍C++ 利用模板偏特化和 decltype(()) 识别表达式的值类别,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
刚刚看到一篇 C++ 博客,里面讲到用模板偏特化识别值类别:lvalue
glvalue
xvalue
rvalue
pravlue
。依照博客的方法试了一下,发现根本行不通。只用模板偏特化只能区分 lvalue
和 rvalue
,无法进行细分。之后,我查阅了一下 cppreference.com 关于 decltype
关键字的描述,发现了 decltype((表达式))
具有以下特性:
- 如果 表达式 的值类别是亡值,
decltype
将会产生T&&
; - 如果 表达式 的值类别是左值,
decltype
将会产生T&
; - 如果 表达式 的值类别是纯右值,
decltype
将会产生T
。
也就是可以细分 xvalue
和 lvalue
,于是尝试将模板偏特化和 decltype(())
结合,发现这种方法可行。
#include <iostream> #include <type_traits> template<typename T> struct is_lvalue : std::false_type {}; template<typename T> struct is_lvalue<T&> : std::true_type {}; template<typename T> struct is_xvalue : std::false_type {}; template<typename T> struct is_xvalue<T&&> : std::true_type {}; template<typename T> struct is_glvalue : std::integral_constant<bool, is_lvalue<T>::value || is_xvalue<T>::value> {}; template<typename T> struct is_prvalue : std::integral_constant<bool, !is_glvalue<T>::value> {}; template<typename T> struct is_rvalue : std::integral_constant<bool, !is_lvalue<T>::value> {}; struct A { int x = 1; }; int main() { A a; std::cout << std::boolalpha << is_lvalue<decltype(("abcd"))>::value << std::endl << is_glvalue<decltype(("abcd"))>::value << std::endl << is_xvalue<decltype(("abcd"))>::value << std::endl << is_rvalue<decltype(("abcd"))>::value << std::endl << is_prvalue<decltype(("abcd"))>::value << std::endl << std::endl << is_lvalue<decltype((a))>::value << std::endl << is_glvalue<decltype((a))>::value << std::endl << is_xvalue<decltype((a))>::value << std::endl << is_rvalue<decltype((a))>::value << std::endl << is_prvalue<decltype((a))>::value << std::endl << std::endl << is_lvalue<decltype((A()))>::value << std::endl << is_glvalue<decltype((A()))>::value << std::endl << is_xvalue<decltype((A()))>::value << std::endl << is_rvalue<decltype((A()))>::value << std::endl << is_prvalue<decltype((A()))>::value << std::endl << std::endl << is_lvalue<decltype((A().x))>::value << std::endl << is_glvalue<decltype((A().x))>::value << std::endl << is_xvalue<decltype((A().x))>::value << std::endl << is_rvalue<decltype((A().x))>::value << std::endl << is_prvalue<decltype((A().x))>::value << std::endl ; }
输出
true true false false false true true false false false false false false true true false true true true false
这篇关于C++ 利用模板偏特化和 decltype(()) 识别表达式的值类别的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解