erlang 各种数据类型占用的内存大小

用erlang的话讲,深入了解erlang不同数据类型所占的内存空间大小,是erlang高效编程的一个良好开始。

一个程序要运行,就要先描述其算法。描述一个算法应先说明算法中要用的数据,数据以变量或常量的形式来描述。每个变量或常量都有数据类型。

很多人都以为要把算法写得多精湛,才算高效编程,其实不然,细微处见功夫。

以下内容展示了erlang各种数据类型占用的内存大小。

Data typeMemory size
Small integer1 word
On 32-bit architectures: -134217729 < i < 134217728 (28 bits)
On 64-bit architectures: -576460752303423489 < i < 576460752303423488 (60 bits)
Big integer3..N words
Atom1 word. Note: an atom refers into an atom table which also consumes memory. The atom text is stored once for each unique atom in this table. The atom table is not garbage-collected.
FloatOn 32-bit architectures: 4 words 
On 64-bit architectures: 3 words
Binary3..6 + data (can be shared)
List1 word + 1 word per element + the size of each element
String (is the same as a list of integers)1 word + 2 words per character
Tuple2 words + the size of each element
Pid1 word for a process identifier from the current local node, and 5 words for a process identifier from another node. Note: a process identifier refers into a process table and a node table which also consumes memory.
Port1 word for a port identifier from the current local node, and 5 words for a port identifier from another node. Note: a port identifier refers into a port table and a node table which also consumes memory.
ReferenceOn 32-bit architectures: 5 words for a reference from the current local node, and 7 words for a reference from another node. 
On 64-bit architectures: 4 words for a reference from the current local node, and 6 words for a reference from another node. Note: a reference refers into a node table which also consumes memory.
Fun9..13 words + size of environment. Note: a fun refers into a fun table which also consumes memory.
Ets tableInitially 768 words + the size of each element (6 words + size of Erlang data). The table will grow when necessary.
Erlang process327 words when spawned including a heap of 233 words.

那么,一个word占多大的空间?

1> erlang:system_info(wordsize).
8
通常情况下,32位系统占4字节,64位系统占8字节。

参考:http://blog.csdn.net/mycwq/article/details/16893209

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值