NSArray各种遍历

简介:

Student.h:

#import <Foundation/Foundation.h>  @interface Student : NSObject +(id)student; -(void)test; @end 

Student.m:

#import "Student.h"  @implementation Student +(id)student{     return [[[Student alloc] init] autorelease]; } -(void)test:(NSString *) str{     NSLog(@"%@->test-%@",self,str); } -(void)dealloc{     NSLog(@"Student%@被销毁了",self);     [super dealloc]; } @end

main:

#import <Foundation/Foundation.h> #import "Student.h" void arrayCreate(){ //静态

















本文转自蓬莱仙羽51CTO博客,原文链接:http://blog.51cto.com/dingxiaowei/1366478,如需转载请自行联系原作者

相关文章
Map遍历的几种方法
Map遍历的几种方法
如何判断NSMutableDictionary是否有某个key
如何判断NSMutableDictionary是否有某个key
83 0
|
算法 安全 搜索推荐