Function 関数

NSZoneMalloc

Allocates memory in a zone. メモリをあるゾーンにおいてアロケートします。

Declaration 宣言

void * NSZoneMalloc(NSZone *zone, NSUInteger size);

Discussion 議論

Allocates size bytes in zone and returns a pointer to the allocated memory. This function returns NULL if it was unable to allocate the requested memory. sizeバイトをzoneの中でアロケートしてください、そしてアロケートされたメモリへのポインタを返してください。この関数は、NULLを返します、もしそれが要請されたメモリをアロケートすることができなかったならば。

See Also 参照

Managing Zones ゾーンを管理する