Delphi中StrLen、Length、SizeOf三个函数有什么区别(50分)

  • 主题发起人 主题发起人 cwalone
  • 开始时间 开始时间
C

cwalone

Unregistered / Unconfirmed
GUEST, unregistred user!
问题很基础,不过查了很多相关书,都没有说明,
请各位达人帮帮忙,
最好有详细的解释,
谢谢啦!
 
StrLen,Length一样的只是参数类型不同
sizeof 求变量或类型的占用的字节数

这些东西自已上网找到处都是
 
StrLen ://返回一个以null为结束符的字符串的长度.
Returns number of characters in a string excluding the null terminator.
length:反回字符串长度.

sizeof://返回一个变量所占的内存空间数
The standard function SizeOf operates on all variables and type identifiers. It returns an integer representing the amount of memory (in bytes) required to store data of the specified type. For example, SizeOf(Longint) returns 4, since a Longint variable uses four bytes of memory.
 
那么简单的事情!!
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部