Function 関数

NSZoneCalloc

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

Declaration 宣言

void * NSZoneCalloc(NSZone *zone, NSUInteger numElems, NSUInteger byteSize);

Discussion 議論

Allocates enough memory from zone for numElems elements, each with a size numBytes bytes, and returns a pointer to the allocated memory. The memory is initialized with zeros. This function returns NULL if it was unable to allocate the requested memory. 十分なメモリをzoneからnumElems要素のためにアロケートします、それぞれnumBytesバイトで、そしてアロケートされたメモリへのポインタを返します。メモリは、ゼロで初期化されます。この関数は、NULLを返します、もしそれが要請されたメモリをアロケートすることができなかったならば。

See Also 参照

Managing Zones ゾーンを管理する