String@
Result = String@ ( Pointer AS Pointer )
返回位于给定内存地址的以零结尾的字符串作为 Gambas 常量字符串。
If
Pointer points at a memory allocation returned by
Alloc, do not free the allocation before you end dealing with the string.
If
Pointer points at an unreadable memory address, then
NULL is returned.
String@ (2)
Result = String@ ( Pointer AS Pointer , Length AS Integer )
返回位于给定内存地址的字符串作为常量字符串。 字符串长度由
Length 参数给出。
See also