我倒是不追求代码和C++相似,但是应该追求简洁的代码,下面是一个新的尝试


shape.h

  1. #ifndef SHAPE_H
  2. #define SHAPE_H
  3.  
  4. typedef struct shape_t
  5. {
  6. void *shapeData;
  7. void (*area)(void *);
  8. void (*release)(void *);
  9. }Shape;
  10.  
  11. void release(void *shape);
  12.  
  13. #endif

shape.c

  1. #include <stdlib.h>
  2. #include "shape.h"
  3.  
  4. void release(void *shape)
  5. {
  6. free(((Shape*)shape)->shapeData);
  7. free(shape);
  8. }

circle.h

  1. #ifndef CIRCLE_H
  2. #define CIRCLE_H
  3.  
  4. #include "shape.h"
  5.  
  6. typedef struct
  7. {
  8. double r;
  9. }Circle;
  10.  
  11. Shape* makeCircle(double r);
  12.  
  13. #endif

circle.c

  1. #include <assert.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include "shape.h"
  5. #include "circle.h"
  6.  
  7. const double PI = 3.14159;
  8.  
  9. static void area(void *shape)
  10. {
  11. Circle *_circle = (Circle*)((Shape *)shape)->shapeData;
  12. printf("the circle area is %f \n", _circle->r * _circle->r * PI);
  13. }
  14.  
  15. Shape* makeCircle(double r)
  16. {
  17. Shape *shape = (Shape *)malloc(sizeof(Shape));
  18. Circle *circle = (Circle *)malloc(sizeof(Circle));
  19. assert(shape != NULL && circle != NULL);
  20. assert(r > );
  21.  
  22. circle->r = r;
  23. shape->shapeData = circle;
  24. shape->area = &area;
  25. shape->release = &release;
  26.  
  27. return shape;
  28. }

rectange.h

  1. #ifndef RECTANGLE_H
  2. #define RECTANGLE_H
  3.  
  4. typedef struct{
  5. float x;
  6. float y;
  7. }Rectangle;
  8.  
  9. Shape *makeRectangle(float x, float y);
  10. #endif

rectange.c

  1. #include <assert.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include "shape.h"
  5. #include "rectangle.h"
  6.  
  7. static void area(void *shape)
  8. {
  9. Rectangle *rectangle = (Rectangle*)((Shape *)shape)->shapeData;
  10. printf("the rectangle area is %f \n", rectangle->x * rectangle->y);
  11. }
  12.  
  13. Shape* makeRectangle(float x, float y)
  14. {
  15. Shape *shape = (Shape *)malloc(sizeof(Shape));
  16. Rectangle *rectangle = (Rectangle *)malloc(sizeof(Rectangle));
  17. assert(shape != NULL && rectangle != NULL);
  18. assert(x > && y > );
  19.  
  20. rectangle->x = x;
  21. rectangle->y = y;
  22. shape->shapeData = rectangle;
  23. shape->area = &area;
  24. shape->release = &release;
  25.  
  26. return shape;
  27. }

main.c

  1. #include <stdio.h>
  2. #include "shape.h"
  3. #include "circle.h"
  4. #include "rectangle.h"
  5.  
  6. void printShapeArea(Shape **shapes,int length)
  7. {
  8. int i=;
  9. for(i=;i<length;i++)
  10. {
  11. Shape *shape = shapes[i];
  12. shape->area(shape);
  13. shape->release(shape);
  14. }
  15. }
  16.  
  17. int main()
  18. {
  19. Shape *p[] = {makeCircle(3.2),makeCircle(3.2),makeRectangle(,)};
  20. printShapeArea(p,);
  21. return ;
  22. }

C语言实现OOP 版本3 :简化代码的更多相关文章

  1. C语言实现OOP 版本2

    写版本2的原因,还是发现在不同的具体图形模块里发现了重复的release代码,这是坏味道,所以还是决定消除这些重复代码,DRY! shape.h #ifndef SHAPE_H #define SHA ...

  2. 一个UUID生成算法的C语言实现 --- WIN32版本 .

    一个UUID生成算法的C语言实现——WIN32版本   cheungmine 2007-9-16   根据定义,UUID(Universally Unique IDentifier,也称GUID)在时 ...

  3. C# 语言规范_版本5.0 (第2章 词法结构)

    1. 词法结构 1.1 程序 C# 程序 (program) 由一个或多个源文件 (source file) 组成,源文件的正式名称是编译单元 (compilation unit)(第 9.1 节). ...

  4. 几种不同程序语言的HMM版本

    几种不同程序语言的HMM版本 “纸上得来终觉浅,绝知此事要躬行”,在继续翻译<HMM学习最佳范例>之前,这里先补充几个不同程序语言实现的HMM版本,主要参考了维基百科.读者有兴趣的话可以研 ...

  5. 链表中用标兵结点简化代码 分类: c/c++ 2014-09-29 23:10 475人阅读 评论(0) 收藏

    标兵结点(头结点)是在链表中的第一个结点,不存放数据,仅仅是个标记 利用标兵结点可以简化代码.下面实现双向链表中的按值删除元素的函数,分别实现 带标兵结点和不带标兵结点两版本,对比可见标兵结点的好处. ...

  6. 用block做事件回调来简化代码,提高开发效率

       我们在自定义view的时候,通常要考虑view的封装复用,所以如何把view的事件回调给Controller就是个需要好好考虑的问题, 一般来说,可选的方式主要有target-action和de ...

  7. LevelDB源码分析--使用Iterator简化代码设计

    我们先来参考来至使用Iterator简化代码2-TwoLevelIterator的例子,略微修改希望能帮助更加容易立即,如果有不理解请各位看客阅读原文. 下面我们再来看一个例子,我们为一个书店写程序, ...

  8. C#泛型简化代码量示例

    泛型简化代码量 下是我在项目中通过泛型来简化工作的一个Demo,记录一下: using System; using System.Collections.Generic;   namespace My ...

  9. 玩转UITableView系列(一)--- 解耦封装、简化代码、适者生存!

    UITableView这个iOS开发中永远绕不开的UIView,那么就不可避免的要在多个页面多种场景下反复摩擦UITableView,就算是刚跳进火坑不久的iOS Developer也知道实现UITa ...

随机推荐

  1. linux 搭建lamp环境

    sudo apt-get install apache2 mysql-server mysql-client php5 php5-gd php5-mysql sudo chmod 777 /var/w ...

  2. PowerShell正则表达式(一) 定义模式

    PowerShell正则表达式(一) 定义模式 7 29 9月, 2013  在 Powershell tagged 正则表达式 by Mooser Lee 本文索引 [隐藏] 1限定符 2识别IP地 ...

  3. 如何查找到文件以后,带目录一起拷贝到新的目录? cp --parents source destination

    如何查找到文件以后,带目录一起拷贝到新的目录? cp --parents  source  destination

  4. 2015第19周四jquery版本

    今天用到一个jquery插件,发现最新版需要jquery2.0以上版本才行,而目前项目在用的版本是1.8.3,自然无法使用,刚看了jquery的主要版本和差异,直接百度搜索无满意结果,最后在百科中给出 ...

  5. Oracle中对列加密的方法

    Oracle中对列加密的方法 2011-12-22 17:21:13 分类: Linux Oracle支持多种列加密方式: 1,透明数据加密(TDE):create table encrypt_col ...

  6. 第28讲 UI组件之 ListView和ArrayAdapter

    第28讲 UI组件之 ListView和ArrayAdapter 1. Adapter 适配器 Adapter是连接后端数据和前端显示的适配器接口,是数据和UI(View)之间一个重要的纽带.在常见的 ...

  7. PHP设计模式笔记三:三种基本设计模式(工厂模式、单例模式、注册树模式) -- Rango韩老师 http://www.imooc.com/learn/236

    一.工厂设计模式 index.php $db = IMooc\Factory::createDatabase(); 使用工厂类的静态方法直接创建一个dababase对象,当类名发生修改时,在工厂里修改 ...

  8. 什么是 gnuplot

    Gnuplot是一个命令行的交互式绘图工具(command-driven interactive function plotting program).用户通过输入命令,可以逐步设置或修改绘图环境,并 ...

  9. traceroute原理

    traceroute原理 ICMP ICMP全称为Internet Control Message Protocol,即,网络控制报文协议. 当一个IP数据报发送失败时,最后一个路由器会向发送发传递一 ...

  10. update-database时出现Cannot attach the file

    在进行Migrations时,如果直接删除了Db文件,在使用update-database时会出现Cannot attach the file发问题 解决方案: