如何分配我们自己的功能,动态内存(不使用malloc) [英] how to allocate the dynamic memory with our own function (without using malloc)

查看:109
本文介绍了如何分配我们自己的功能,动态内存(不使用malloc)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何用我们自己的功能分配动态内存

how to allocate the dynamic memory with our own function

不使用malloc(),如何用C语言动态分配内存空间。

without using malloc(), how to allocate dynamic memory using C language.

推荐答案

如果你不想使用由图书馆提供的的malloc (),你将不得不实施您自己的内存管理器,但我看不出有任何理由这样做。这code为全面测试,在使用很长一段时间。
您可以根据 SBRK ()系统调用实现自己的样品内存管理器。
我建议你​​去通过下面的链接。

If you do not want to use malloc() provided by the library, you will have to implement your own memory manager, but I don't see any reason for doing so. That code is thoroughly tested and is in use for a long time. You can implement your own sample memory manager based on the sbrk() system call. I would recommend you to go through the following link.

假设你在Linux上,检查下面的链接:

Assuming you are on linux, check the link below:

http://www.ibm.com/developerworks/linux/library / L内存/

这篇关于如何分配我们自己的功能,动态内存(不使用malloc)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆