利用C语言实践OOP,以及new,delete的深入分析
2019/7/10 23:25:28
本文主要是介绍利用C语言实践OOP,以及new,delete的深入分析,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
研究了一下,总算勉强能够融会贯通了
c写成OOP还蛮有乐趣的
编译环境:Xcode3.2.3+gcc4.2
#ifndef OBJECT_H
#define OBJECT_H
typedef void (*Execute)(struct Object *a_This);
typedef struct Object* (*Allocate)();
typedef struct _Object_Vtable
{
char *name;
Execute exe;
}Object_Vtable;
typedef struct _baseCmd
{
Object_Vtable vtable;
}BaseCmd;
// --- for common --- //
BaseCmd* new(Allocate newObj);
void delete(void * item);
// --------------------------//
// --- for BaseCmd --- //
BaseCmd* NewBaseCmd();
void Exe_BaseCmd(BaseCmd *a_This);
// --------------------------//
// --- for HomeCmd --- //
typedef struct _homeCmd
{
Object_Vtable vtable;
}HomeCmd;
BaseCmd* NewHomeCmd();
void Exe_HomeCmd(HomeCmd *a_This);
// --------------------------//
#endif
#include "Cloud.h"
// --- for common --- //
BaseCmd* new(Allocate newObj)
{
BaseCmd * obj = newObj();
return obj;
}
void delete(void * item)
{
free(item);
}
// --------------------------//
// --- for BaseCmd --- //
BaseCmd* NewBaseCmd()
{
BaseCmd * cmd = malloc(sizeof(BaseCmd));
cmd->vtable.name = "Cloud";
cmd->vtable.exe = Exe_BaseCmd;
return cmd;
}
void Exe_BaseCmd(BaseCmd *a_This)
{
printf("do base command = %s/n",a_This->vtable.name);
}
// --------------------------//
// --- for HomeCmd --- //
BaseCmd* NewHomeCmd()
{
HomeCmd * cmd = malloc(sizeof(HomeCmd));
cmd->vtable.name = "Home";
cmd->vtable.exe = Exe_HomeCmd;
return cmd;
}
void Exe_HomeCmd(HomeCmd *a_This)
{
printf("do home command = %s/n",a_This->vtable.name);
}
// --------------------------//
#include <stdio.h>
#include <stdlib.h>
#include "Cloud.h"
int main (int argc, const char * argv[])
{
BaseCmd* cmd = new(NewBaseCmd);
cmd->vtable.exe(cmd);
delete(cmd);
BaseCmd* cmd2 = new(NewHomeCmd);
cmd2->vtable.exe(cmd2);
delete(cmd2);
return 0;
}
c写成OOP还蛮有乐趣的
编译环境:Xcode3.2.3+gcc4.2
复制代码 代码如下:
#ifndef OBJECT_H
#define OBJECT_H
typedef void (*Execute)(struct Object *a_This);
typedef struct Object* (*Allocate)();
typedef struct _Object_Vtable
{
char *name;
Execute exe;
}Object_Vtable;
typedef struct _baseCmd
{
Object_Vtable vtable;
}BaseCmd;
// --- for common --- //
BaseCmd* new(Allocate newObj);
void delete(void * item);
// --------------------------//
// --- for BaseCmd --- //
BaseCmd* NewBaseCmd();
void Exe_BaseCmd(BaseCmd *a_This);
// --------------------------//
// --- for HomeCmd --- //
typedef struct _homeCmd
{
Object_Vtable vtable;
}HomeCmd;
BaseCmd* NewHomeCmd();
void Exe_HomeCmd(HomeCmd *a_This);
// --------------------------//
#endif
复制代码 代码如下:
#include "Cloud.h"
// --- for common --- //
BaseCmd* new(Allocate newObj)
{
BaseCmd * obj = newObj();
return obj;
}
void delete(void * item)
{
free(item);
}
// --------------------------//
// --- for BaseCmd --- //
BaseCmd* NewBaseCmd()
{
BaseCmd * cmd = malloc(sizeof(BaseCmd));
cmd->vtable.name = "Cloud";
cmd->vtable.exe = Exe_BaseCmd;
return cmd;
}
void Exe_BaseCmd(BaseCmd *a_This)
{
printf("do base command = %s/n",a_This->vtable.name);
}
// --------------------------//
// --- for HomeCmd --- //
BaseCmd* NewHomeCmd()
{
HomeCmd * cmd = malloc(sizeof(HomeCmd));
cmd->vtable.name = "Home";
cmd->vtable.exe = Exe_HomeCmd;
return cmd;
}
void Exe_HomeCmd(HomeCmd *a_This)
{
printf("do home command = %s/n",a_This->vtable.name);
}
// --------------------------//
复制代码 代码如下:
#include <stdio.h>
#include <stdlib.h>
#include "Cloud.h"
int main (int argc, const char * argv[])
{
BaseCmd* cmd = new(NewBaseCmd);
cmd->vtable.exe(cmd);
delete(cmd);
BaseCmd* cmd2 = new(NewHomeCmd);
cmd2->vtable.exe(cmd2);
delete(cmd2);
return 0;
}
这篇关于利用C语言实践OOP,以及new,delete的深入分析的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25【机器学习(二)】分类和回归任务-决策树(Decision Tree,DT)算法-Sentosa_DSML社区版
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享