单项选择题

以下是定义cell重用标识符的语句:static NSString * const reuseIdentifier = @"Cell"; 关于以上代码说法正确的是? ()

A.static是为了修饰变量是全局区域的
B.static是为了修饰变量是可以被其它类引用为全局变量的
C.const是为了修饰reuseIdentifier指针本身不可以改变
D.const是为了修饰reuseIdentifier指针指向的内容不可以改变