const-str-8.m

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· M 代码 · 共 40 行

M
40
字号
/* Test for assigning compile-time constant-string objects to static variables.  *//* Contributed by Ziemowit Laski <zlaski@apple.com>  *//* { dg-options "-fnext-runtime -fconstant-string-class=Foo -lobjc" } *//* { dg-do run { target *-*-darwin* } } */#include <stdlib.h>#include <objc/Object.h>@interface Foo: Object {  char *cString;  unsigned int len;}@endstruct objc_class _FooClassReference;@implementation Foo : Object- (char *)customString {  return cString;}@endstatic const Foo *appKey = @"MyApp";static int CFPreferencesSynchronize (const Foo *ref) {  return ref == appKey;}static void PrefsSynchronize(void){  if(!CFPreferencesSynchronize(appKey))    abort();}int main () {  PrefsSynchronize();  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?