C语言实现OOP 版本3 :简化代码
我倒是不追求代码和C++相似,但是应该追求简洁的代码,下面是一个新的尝试
shape.h
- #ifndef SHAPE_H
- #define SHAPE_H
- typedef struct shape_t
- {
- void *shapeData;
- void (*area)(void *);
- void (*release)(void *);
- }Shape;
- void release(void *shape);
- #endif
shape.c
- #include <stdlib.h>
- #include "shape.h"
- void release(void *shape)
- {
- free(((Shape*)shape)->shapeData);
- free(shape);
- }
circle.h
- #ifndef CIRCLE_H
- #define CIRCLE_H
- #include "shape.h"
- typedef struct
- {
- double r;
- }Circle;
- Shape* makeCircle(double r);
- #endif
circle.c
- #include <assert.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include "shape.h"
- #include "circle.h"
- const double PI = 3.14159;
- static void area(void *shape)
- {
- Circle *_circle = (Circle*)((Shape *)shape)->shapeData;
- printf("the circle area is %f \n", _circle->r * _circle->r * PI);
- }
- Shape* makeCircle(double r)
- {
- Shape *shape = (Shape *)malloc(sizeof(Shape));
- Circle *circle = (Circle *)malloc(sizeof(Circle));
- assert(shape != NULL && circle != NULL);
- assert(r > );
- circle->r = r;
- shape->shapeData = circle;
- shape->area = &area;
- shape->release = &release;
- return shape;
- }
rectange.h
- #ifndef RECTANGLE_H
- #define RECTANGLE_H
- typedef struct{
- float x;
- float y;
- }Rectangle;
- Shape *makeRectangle(float x, float y);
- #endif
rectange.c
- #include <assert.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include "shape.h"
- #include "rectangle.h"
- static void area(void *shape)
- {
- Rectangle *rectangle = (Rectangle*)((Shape *)shape)->shapeData;
- printf("the rectangle area is %f \n", rectangle->x * rectangle->y);
- }
- Shape* makeRectangle(float x, float y)
- {
- Shape *shape = (Shape *)malloc(sizeof(Shape));
- Rectangle *rectangle = (Rectangle *)malloc(sizeof(Rectangle));
- assert(shape != NULL && rectangle != NULL);
- assert(x > && y > );
- rectangle->x = x;
- rectangle->y = y;
- shape->shapeData = rectangle;
- shape->area = &area;
- shape->release = &release;
- return shape;
- }
main.c
- #include <stdio.h>
- #include "shape.h"
- #include "circle.h"
- #include "rectangle.h"
- void printShapeArea(Shape **shapes,int length)
- {
- int i=;
- for(i=;i<length;i++)
- {
- Shape *shape = shapes[i];
- shape->area(shape);
- shape->release(shape);
- }
- }
- int main()
- {
- Shape *p[] = {makeCircle(3.2),makeCircle(3.2),makeRectangle(,)};
- printShapeArea(p,);
- return ;
- }
C语言实现OOP 版本3 :简化代码的更多相关文章
- C语言实现OOP 版本2
写版本2的原因,还是发现在不同的具体图形模块里发现了重复的release代码,这是坏味道,所以还是决定消除这些重复代码,DRY! shape.h #ifndef SHAPE_H #define SHA ...
- 一个UUID生成算法的C语言实现 --- WIN32版本 .
一个UUID生成算法的C语言实现——WIN32版本 cheungmine 2007-9-16 根据定义,UUID(Universally Unique IDentifier,也称GUID)在时 ...
- C# 语言规范_版本5.0 (第2章 词法结构)
1. 词法结构 1.1 程序 C# 程序 (program) 由一个或多个源文件 (source file) 组成,源文件的正式名称是编译单元 (compilation unit)(第 9.1 节). ...
- 几种不同程序语言的HMM版本
几种不同程序语言的HMM版本 “纸上得来终觉浅,绝知此事要躬行”,在继续翻译<HMM学习最佳范例>之前,这里先补充几个不同程序语言实现的HMM版本,主要参考了维基百科.读者有兴趣的话可以研 ...
- 链表中用标兵结点简化代码 分类: c/c++ 2014-09-29 23:10 475人阅读 评论(0) 收藏
标兵结点(头结点)是在链表中的第一个结点,不存放数据,仅仅是个标记 利用标兵结点可以简化代码.下面实现双向链表中的按值删除元素的函数,分别实现 带标兵结点和不带标兵结点两版本,对比可见标兵结点的好处. ...
- 用block做事件回调来简化代码,提高开发效率
我们在自定义view的时候,通常要考虑view的封装复用,所以如何把view的事件回调给Controller就是个需要好好考虑的问题, 一般来说,可选的方式主要有target-action和de ...
- LevelDB源码分析--使用Iterator简化代码设计
我们先来参考来至使用Iterator简化代码2-TwoLevelIterator的例子,略微修改希望能帮助更加容易立即,如果有不理解请各位看客阅读原文. 下面我们再来看一个例子,我们为一个书店写程序, ...
- C#泛型简化代码量示例
泛型简化代码量 下是我在项目中通过泛型来简化工作的一个Demo,记录一下: using System; using System.Collections.Generic; namespace My ...
- 玩转UITableView系列(一)--- 解耦封装、简化代码、适者生存!
UITableView这个iOS开发中永远绕不开的UIView,那么就不可避免的要在多个页面多种场景下反复摩擦UITableView,就算是刚跳进火坑不久的iOS Developer也知道实现UITa ...
随机推荐
- linux 搭建lamp环境
sudo apt-get install apache2 mysql-server mysql-client php5 php5-gd php5-mysql sudo chmod 777 /var/w ...
- PowerShell正则表达式(一) 定义模式
PowerShell正则表达式(一) 定义模式 7 29 9月, 2013 在 Powershell tagged 正则表达式 by Mooser Lee 本文索引 [隐藏] 1限定符 2识别IP地 ...
- 如何查找到文件以后,带目录一起拷贝到新的目录? cp --parents source destination
如何查找到文件以后,带目录一起拷贝到新的目录? cp --parents source destination
- 2015第19周四jquery版本
今天用到一个jquery插件,发现最新版需要jquery2.0以上版本才行,而目前项目在用的版本是1.8.3,自然无法使用,刚看了jquery的主要版本和差异,直接百度搜索无满意结果,最后在百科中给出 ...
- Oracle中对列加密的方法
Oracle中对列加密的方法 2011-12-22 17:21:13 分类: Linux Oracle支持多种列加密方式: 1,透明数据加密(TDE):create table encrypt_col ...
- 第28讲 UI组件之 ListView和ArrayAdapter
第28讲 UI组件之 ListView和ArrayAdapter 1. Adapter 适配器 Adapter是连接后端数据和前端显示的适配器接口,是数据和UI(View)之间一个重要的纽带.在常见的 ...
- PHP设计模式笔记三:三种基本设计模式(工厂模式、单例模式、注册树模式) -- Rango韩老师 http://www.imooc.com/learn/236
一.工厂设计模式 index.php $db = IMooc\Factory::createDatabase(); 使用工厂类的静态方法直接创建一个dababase对象,当类名发生修改时,在工厂里修改 ...
- 什么是 gnuplot
Gnuplot是一个命令行的交互式绘图工具(command-driven interactive function plotting program).用户通过输入命令,可以逐步设置或修改绘图环境,并 ...
- traceroute原理
traceroute原理 ICMP ICMP全称为Internet Control Message Protocol,即,网络控制报文协议. 当一个IP数据报发送失败时,最后一个路由器会向发送发传递一 ...
- update-database时出现Cannot attach the file
在进行Migrations时,如果直接删除了Db文件,在使用update-database时会出现Cannot attach the file发问题 解决方案: