码迷,mamicode.com
首页 > 其他好文 > 详细

decltype使用

时间:2018-01-07 20:09:49      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:一个   ace   main   win   highlight   别名   函数   window   type   

#include<thread>
#include<array>
#include<iostream>
#include<windows.h>
#include <thread> 
using namespace std;

void a(int a)
{
	cout << a << endl;
};


void b(int b)
{
	cout << a << endl;
};

int main()
{
	decltype(a) &a1=a;  //函数引用,给一个decltype初始化别名
	a1(10);

	decltype(a) *a2=a;  //函数指针,给一个decltype初始化别名
	a2(100);

	decltype(a) b;      ////函数,给一个decltype初始化别名
	b(1000);
}

  

decltype使用

标签:一个   ace   main   win   highlight   别名   函数   window   type   

原文地址:https://www.cnblogs.com/weekbo/p/8228890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!