首页 > 编程语言 > 详细

c++11之函数式编程实例

时间:2017-08-22 22:40:08      阅读:421      评论:0      收藏:0      [点我收藏+]

#ifndef LEAPYEAR_INCLUDED
#define LEAPYEAR_INCLUDED

class LeapYear
{
public:
bool IsLeapYear(int year);
};
#endif


#include "leapyear.hpp"

auto Or = [](bool a,bool b)->bool{ return a||b; };

auto And = [](bool a,bool b)->bool{ return a&&b; };

auto Not = [](bool a)->bool{ return !a; };

auto Aliquot = [](int dividend,int divisor){return dividend%divisor == 0;};

bool LeapYear::IsLeapYear(int year)
{
auto aliquotby4 = Aliquot(year,4);
auto notaliquotby100 = Not(Aliquot(year,100));
auto aliquotby400 = Aliquot(year,400);
auto leapyear = Or(And(aliquotby4,notaliquotby100),aliquotby400);
return leapyear;
}

c++11之函数式编程实例

原文:http://www.cnblogs.com/atoman/p/7413743.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!