c++ 11 特性学习

auto 含义改变,现为自动类型推断
register c++11之前为建议使用CPU寄存器存储变量,现在几乎没有意义

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <initializer_list>
#include <vector>
#include <algorithm>

using namespace std;

//initial

int sum(initializer_list<int> li)
{
	int total = 0;
	for (auto p = li.begin(); p != li.end(); p++)
	{
		total += *p;
	}
	return total;
}

void initial()
{
	//列表初始化
	int x = 5;
	short input[5] = { 1,2,3,4,5 };
	int *a = new int[5]{ 1,2,3,4,5 };

	class book
	{
	public:
		
		int x, y;
		book(int x, int y) :x(x), y(y) {}
	private:
		
	};
	book b{ 1,2 };
	//char ch = { 45646546 }; 进制收窄
	cout << sum({ 1,2,3,4,5,6 }) << endl;
}

// declare
template<typename T , typename M>
auto name(T t, M m) -> decltype(t * m) 
{
	return t * m;
}
void exception() noexcept//说明函数不会抛出异常
{

}
void declare()
{
	int j = 9;
	int *p = NULL;
	p = new int{ 12 };
	decltype (p) ptr = NULL;
	decltype (j) i;
	decltype (*p * j) pj;
	p = nullptr;//不可转换为整数的空指针
}


//lambda
void lambda()
{
	vector <int> num(10);
	generate(num.begin(), num.end(), rand);
	//sort(num.begin(), num.end(), [](int x, int y) {return x < y; });
	//这种只有一条返回语句的写法会自动判断类型,下面那种指定返回类型
	sort(num.begin(), num.end(), [](int x, int y) {int k = x + y; return x < y; });
	for (auto a : num) cout << a << endl;
}

int main()
{
	//initial();
	lambda();
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值