博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nontype template parameter
阅读量:6378 次
发布时间:2019-06-23

本文共 494 字,大约阅读时间需要 1 分钟。

hot3.png

#include 
#include 
using namespace std;template
int compare(const char (&lhs)[M], const char (&rhs)[N]){    return strcmp(lhs, rhs);}int main(int argc, const char *argv[]){    const char a[] = "hello";    const char b[] = "helle";    int res = compare(a, b);    cout << "a is "         << (res < 0 ? "less" :              res == 0 ? "equal" : "bigger")         << " than b" << endl;    return 0;}

转载于:https://my.oschina.net/u/1443582/blog/194848

你可能感兴趣的文章
飘雪代码2枚
查看>>
项目微管理3 - 面试
查看>>
友元函数和友元类
查看>>
SpringMVC中CRUD实例
查看>>
java-jmx使用
查看>>
Win8Metro(C#)数字图像处理--2.15图像霓虹效果
查看>>
Expo大作战(十七)--expo结合哨兵(sentry)进行错误异常记录
查看>>
vue.js入门学习
查看>>
第8件事 3步打造产品的独特气质
查看>>
debug-stripped.ap_' specified for property 'resourceFile' does not exist
查看>>
利用MapReduce计算平均数
查看>>
scala-05-map映射
查看>>
Spring Boot - how to configure port
查看>>
右键添加复制路径选项
查看>>
DocFetcher 本机文件搜索工具
查看>>
ambassador 学习三 限速处理
查看>>
HTTP传输编码增加了传输量,只为解决这一个问题 | 实用 HTTP
查看>>
数据结构:最小生成树--Kruskal算法
查看>>
Swift_1_基本数据类型
查看>>
VS注释与取消注释快捷键
查看>>