concept

2024-06-16 13:28
文章标签 concept

本文主要是介绍concept,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

concept是给模板添加限制条件,如果条件不符,代码无法通过编译。类似SFINAE的语法糖。

1. 示例一

#include <algorithm>
#include <iostream>
#include <concepts>
#include <type_traits>template<class T>
concept Int = std::same_as<T, int> || std::same_as<T, unsigned>|| std::same_as<T, long> || std::same_as<T, long long>;template<Int T>T plus(T a, T b){return a + b;
}Int auto minus(Int auto a, Int auto b){return a - b;
}int main()
{int a = 9;int b = 8;std::cout << plus(a, b) << std::endl;    // 17std::cout << plus(99, b) << std::endl;   // 107//std::cout << plus(a+0.3, b) << std::endl;std::cout << minus(a, b) << std::endl;   // 1std::cout << minus(99, b) << std::endl;  // 91
}

2. 示例二

2.1 不使用concept进行限制时,square可以传入数字、也可以传入自定义类型

#include <iostream>template<class T>
T square(const T& val){return val * val;
}class Foo{
public:Foo(int val):val_(val){std::cout << "Foo ctor called.\n";}~Foo(){std::cout << "Foo dtor called.\n";}int operator*(const Foo& foo) const {return val_ * foo.val_;}friend std::ostream& operator<<(std::ostream& os, const Foo& foo){os << foo.val_;return os;}private:int val_;
};int main(){std::cout << square(4) << std::endl;std::cout << square(14u) << std::endl;std::cout << square(1.4f) << std::endl;std::cout << square(1.4) << std::endl;Foo foo(5);std::cout << square(foo) << std::endl;
}

输出:

16
196
1.96
1.96
Foo ctor called.
Foo ctor called.
25
Foo dtor called.
Foo dtor called.

2.2 使用concept限制传入的参数必须是数字

// g++ main.cpp -std=c++20 -O2
#include <iostream>
#include <concepts>
#include <type_traits>template<class T>
concept NumberType = std::is_integral_v<T> || std::is_floating_point_v<T>;NumberType auto square(const NumberType auto& val){return val * val;
}class Foo{
public:Foo(int val):val_(val){std::cout << "Foo ctor called.\n";}~Foo(){std::cout << "Foo dtor called.\n";}int operator*(const Foo& foo) const {return val_ * foo.val_;}friend std::ostream& operator<<(std::ostream& os, const Foo& foo){os << foo.val_;return os;}private:int val_;
};int main(){std::cout << square(4) << std::endl;std::cout << square(14u) << std::endl;std::cout << square(1.4f) << std::endl;std::cout << square(1.4) << std::endl;Foo foo(5);//std::cout << square(foo) << std::endl;  // 编译报错error: no matching function for call to 'square(Foo&)'
}

输出:

16
196
1.96
1.96
Foo ctor called.
Foo dtor called.

这篇关于concept的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1066578

相关文章

如何构建一个成功的AI PoC(Prove of Concept)

点击上方“AI公园”,关注公众号,选择加“星标“或“置顶” 作者:Arnault 编译:ronghuaiyang 导读 如何把你的人工智能想法转化为可用的软件。 建立一个 AI PoC 是困难的。在这篇文章中,我将解释我的思维过程,使我的人工智能 PoCs 成功。 “我的闹钟能不能利用交通信息及时叫醒我去上班?”我们都想过求助于人工智能来解决我们的一个问题。概念证明(PoC)的目标是测试

New XAMPP security concept:错误解决方法 (2014-03-06 16:07:46)

New XAMPP security concept:错误解决方法   (2014-03-06 16:07:46) 转载▼   分类: php 在Linux上配置xampp后远程访问域名报错: New XAMPP security concept:Access to the requested object is only available from the lo

Python量化炒股的获取数据函数—get_concept()

查询股票所属的概念板块函数get_concept(),利用该函数可以查询一只或多只股票所属的概念板块,其语法格式如下: get_concept(security, date=None) security:标的代码。类型为字符串,形式如‘000001.XSHE’,或为包含标的代码字符串的列表, 形如[‘000001.XSHE’, ‘000002.XSHE’]。 date:查询日期。类型为字符

Memory as a Programming Concept in C and C++

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。 http://blog.csdn.net/topmvp - topmvp Assuming readers have a basic familiarity with C or C++, Frantisek Franek describes the techniques, metho

Implementing Lean Software Development: From Concept to Cash

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。 http://blog.csdn.net/topmvp - topmvp This new book draws on the Poppendiecks' unparalleled experience helping development organizations opti

引入概念的多文本标签分类:Concept-Based Label Embedding via Dynamic Routing for Hierarchical Text Classification

Zhang, Jiong, Wei-Cheng Chang, Hsiang-Fu Yu, and Inderjit Dhillon. “Fast Multi-Resolution Transformer Fine-Tuning for Extreme Multi-Label Text Classification.” In Advances in Neural Information Proces

李宏毅机器学习笔记( 二)Basic Concept

Basic Concept基础概念 variance(方差) bias(偏见) 用多个m求期望就可以得到μv 希望两者都小 模型的提升 用不同的“宇宙” 找不同的𝑓∗ 对于不同级别的modle 做100次实验 简单的modle   Vaiance是比较小的 原因是简单的modle受到数据的影响较小 因为不会过于离散  bias和bariance的大小变化 和模

ChatGPT4.0之使用c++20的concept实现编译期快排

在现代软件开发中,C++一直是一门极其强大而复杂的编程语言,它提供了广泛的功能和高度的灵活性。随着C++20的到来,我们迎来了一个重要的新特性:Concepts。Concepts旨在改进C++的模板系统,通过为模板参数设定约束,使得编译器能够提前检查模板的使用是否符合开发者的预期。这不仅能提升代码的可读性和可维护性,还能在编译阶段就避免因类型不匹配导致的错误,极大地提高了开发效率。 在这篇博客中

IT大侦“碳”:Concept Luna向循环设计持续演进

IT大侦“碳”:Concept Luna向循环设计持续演进