+ (NSUInteger) getSysInfo: (uint) typeSpecifier
{
size_t size = sizeof(int);
int results;
int mib[2] = {CTL_HW, typeSpecifier};
sysctl(mib, 2, &results, &size, NULL, 0);
return (NSUInteger) results;
}
?
请问对于以上这段代码如果我相获取的时内存大小 那么这个函数返回的结果时 k 还是 m 还是 g。。?