A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© MacxChina 中级黑马   /  2014-11-18 02:22  /  1095 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 MacxChina 于 2014-11-18 02:28 编辑
如题: 分享谓词的使用!

              


#import <Foundation/Foundation.h>
#import "Person.h"

void filter(NSArray *array,NSPredicate *predicate) {
    NSArray *filterArray = [array filteredArrayUsingPredicate:predicate];
    NSLog(@"filterArray=%@",filterArray);
   
}

/*
  谓词的使用
*/
int main(int argc, const char * argv[])
{

    @autoreleasepool {
        
        
        NSArray *persons = [NSArray arrayWithObjects:
                            [Person personWithName:@"mac" andAge:20];
                            [Person personWithName:@"hate" andAge:25];
                            [Person personWithName:@"999ere" andAge:30];
                            [Person personWithName:@"aruse" andAge:28];
                            [Person personWithName:@"Erse" andAge:30];
                            [Person personWithName:@"Ahon" andAge:29];
                            [Person personWithName:@"Gose" andAge:30];
                            [Person personWithName:@"ate" andAge:20];
                            [Person personWithName:@"Iog" andAge:30];
                            [Person personWithName:@"小白" andAge:50];
                            [Person personWithName:@"小黑" andAge:30];
                            nil];
      
        /*
        //1.年龄小于30
        //定义谓词对象,谓词对象中包含了过滤条件
        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age<%d",30];
        
        //使用谓词条件过滤数组中的元素,过滤之后返回查询的结果
        NSArray *filterArray = [persons filteredArrayUsingPredicate:predicate];
        
        NSLog(@"filterArray=%@",filterArray);
        */
        
        //2.使用&&符号
//        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name='小白' && age>40"];
//        filter(persons,predicate);
        
        
        //3.IN(包含)
//        NSPredicate *predicate = [NSPredicate
//                                  predicateWithFormat:@"self.name IN {'小黑','Gose'} || self.age IN {30,50}"];
//        filter(persons,predicate);
        
        //4.以...开头
//        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name BEGINSWITH 'a'"];
//        filter(persons,predicate);
        
        //5.以...结尾
//        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name ENDSWITH 'se'"];
//        filter(persons,predicate);
        
        //6. 包含..字符
//        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name CONTAINS 'a'"];
//        filter(persons,predicate);
        
        //7.like  *:匹配任意多个字符   ?:表示一个字符
        /*
          *a : 以a结尾的
          *a* : 字符串中含有a字符的
          ?a* : 第二个字符为a的
         */
        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name like '?a*'"];
        filter(persons,predicate);
        
    }
   
    return 0;
}



person.h

#import <Foundation/Foundation.h>

@interface Person : NSObject

@property(nonatomic,copy)NSString *name;
@property(nonatomic,assign)NSUInteger age;

+ (id)personWithName:(NSString *)name andAge:(NSUInteger)age;

@end




=====================================================================
person.m


#import "Person.h"

@implementation Person

+ (id)personWithName:(NSString *)name andAge:(NSUInteger)age {
    Person *person = [[Person alloc] init];
    person.name = name;
    person.age = age;

    return [person autorelease];
}

- (void)dealloc {
    [_name release];
    [super dealloc];
}

- (NSString *)description {
    NSString *s = [NSString stringWithFormat:@"name=%@,age=%ld",_name,_age];
    return s;
}

@end


1 个回复

正序浏览
不错哦,,,,,
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马