c++ 17 constexpr

未来已来:从SFINAE到concepts

cpp 复制代码
#include <type_traits>  
#include <vector>  
#include <list>  
#include <iostream>  

// 一个通用的容器打印函数,支持任何带 begin()/end() 的容器  
template<typename Container>  
auto print_container(const Container& c) ->   
    decltype(std::begin(c), std::end(c), void()) {  
    std::cout << "容器内容: ";  
    for (const auto& item : c) {  
        std::cout << item << " ";  
    }  
    std::cout << std::endl;  
}  

// 对于不是容器的类型,提供一个普通的打印函数  
template<typename T>  
void print(const T& value) {  
    std::cout << "单个值: " << value << std::endl;  
}  

// 智能函数:自动选择合适的打印方式  
template<typename T>  
void smart_print(const T& value) {  
    // 尝试作为容器打印,如果失败就作为单个值打印  
    if constexpr (requires { std::begin(value); std::end(value); }) {  
        print_container(value);  
    } else {  
        print(value);  
    }  
}  

int main() {  
    // 容器类型  
    std::vector<int> vec = {1, 2, 3, 4, 5};  
    std::list<double> lst = {1.1, 2.2, 3.3};  
    
    // 单个值  
    int x = 42;  
    std::string str = "hello";  

    // 自动选择合适的打印方式  
    smart_print(vec);  // 使用容器版本  
    smart_print(lst);  // 使用容器版本  
    smart_print(x);    // 使用单值版本  
    smart_print(str);  // 字符串既是容器也是单值,这里会作为容器处理  
}
相关推荐
山茶花开时。9 分钟前
[SAP ABAP] 使用LOOP AT...ASSIGNING FIELD-SYMBOL 直接更新内表数据
开发语言·sap·abap
芯心智库15 分钟前
【DAPM杂谈之一】DAPM作用与内核文档解读
linux·c语言·c++·华为云·云计算·音视频·京东云
Antonio91527 分钟前
【opencv】第8章 图像轮廓与图像分割修复
c++·人工智能·opencv·计算机视觉
java熊猫41 分钟前
CSS语言的网络编程
开发语言·后端·golang
生活很暖很治愈44 分钟前
C语言之旅5--分支与循环【2】
c语言·开发语言
小庞在加油1 小时前
【C++开源库】Boost.Asio网络库使用介绍
网络·c++·开源·boost网络库
nece0011 小时前
PHP的扩展Imagick的安装
开发语言·php
Panda-gallery2 小时前
【Rust】常见集合
开发语言·后端·rust
陈序缘2 小时前
Rust实现智能助手 - 项目初始化
开发语言·后端·语言模型·rust
timer_0172 小时前
Rust 1.84.0 发布
开发语言·后端·rust