Skip to content

Instantly share code, notes, and snippets.

@7gano
Last active December 15, 2015 09:29
Show Gist options
  • Save 7gano/5238239 to your computer and use it in GitHub Desktop.
Save 7gano/5238239 to your computer and use it in GitHub Desktop.
#include <CoreFoundation/CoreFoundation.h>
int main(int argc, const char * argv[])
{
CFStringRef string;
string = CFStringCreateWithCString(kCFAllocatorDefault,
"Core Foundation",
kCFStringEncodingUTF8);
printf("%ld\n",CFGetRetainCount(string));
CFRetain(string);
printf("%ld\n",CFGetRetainCount(string));
CFRelease(string);
printf("%ld\n",CFGetRetainCount(string));
CFRelease(string);
return 0;
}
実行結果
1
2
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment