method-namespace-1.mm
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· MM 代码 · 共 31 行
MM
31 行
/* APPLE LOCAL file radar 4508851 *//* Test for usage of namespace inside @implementation. *//* { dg-do compile } */@interface MyDocument@end@implementation MyDocument// This deprecated usage worksstatic void foo1() { }// This preferred usage does _not_ worknamespace { void foo2() { } }namespace STD { void foo3 () {} }using namespace STD;- (void) GARF { foo2(); foo3();}@end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?