博客
关于我
C++第35课--函数对象分析 即 函数调用操作符重载
阅读量:377 次
发布时间:2019-03-04

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

本文学习自狄泰软件学院 唐佐林老师的 C++课程。

在实际的C++工程项目中,我们尽量少地使用原生的指针。例如:

  • 使用 string 类代替传统的字符指针
  • 使用 array 类代替传统的数组
  • 使用函数对象代替函数指针

实验2:函数调用操作符重载

实验1:解决方案1

#include 
#include
using namespace std;int fib() { static int a0 = 0; static int a1 = 1; int ret = a1; a1 = a0 + a1; a0 = ret; return ret;}int main() { for(int i=0; i<10; i++) { cout << fib() << endl; } cout << endl; for(int i=0; i<5; i++) { cout << fib() << endl; } return 0;}

实验2:函数调用操作符重载

#include 
#include
using namespace std;class Fib { int a0; int a1;public: Fib() { a0 = 0; a1 = 1; } Fib(int n) { a0 = 0; a1 = 1; for(int i=2; i<=n; i++) { int t = a1; a1 = a0 + a1; a0 = t; } } int operator()() { int ret = a1; a1 = a0 + a1; a0 = ret; return ret; }};int main() { Fib fib; for(int i=0; i<10; i++) { cout << fib() << endl; } cout << endl; for(int i=0; i<5; i++) { cout << fib() << endl; } cout << endl; Fib fib2(10); for(int i=0; i<5; i++) { cout << fib2() << endl; } return 0;}

转载地址:http://kpme.baihongyu.com/

你可能感兴趣的文章
MySQL锁与脏读、不可重复读、幻读详解
查看>>
MySQL集群解决方案(4):负载均衡
查看>>
mysql面试题学校三表查询_mysql三表查询分组后取每组最大值,mysql面试题。
查看>>
mysql颠覆实战笔记(八)--mysql的自定义异常处理怎么破
查看>>
MYSQL高可用集群MHA架构
查看>>
MySQL高级-MySQL并发参数调整
查看>>
MySQL高级-SQL优化步骤
查看>>
MySQL高级-视图
查看>>
mysql高级查询~分页查询
查看>>
MySQL:判断逗号分隔的字符串中是否包含某个字符串
查看>>
nacos config
查看>>
Nacos原理
查看>>
Nacos在双击startup.cmd启动时提示:Unable to start embedded Tomcat
查看>>
Nacos安装教程(非常详细)从零基础入门到精通,看完这一篇就够了
查看>>
Nacos配置中心集群原理及源码分析
查看>>
nacos配置自动刷新源码解析
查看>>
Nacos集群搭建
查看>>
nacos集群搭建
查看>>
nagios安装文档
查看>>
name_save matlab
查看>>