1. 程式人生 > >OC學習篇之---謂詞 NSPredicate

OC學習篇之---謂詞 NSPredicate

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

在前一篇文章中我們介紹了OC中一個重要技術通知:http://blog.csdn.net/jiangwei0910410003/article/details/41923401,今天我們在來看一下OC中給我們提供的一個技術:謂詞(

NSPredicate)

OC中的謂詞操作是針對於陣列型別的,他就好比資料庫中的查詢操作,資料來源就是陣列,這樣的好處是我們不需要編寫很多程式碼就可以去運算元組,同時也起到過濾的作用,我們可以編寫簡單的謂詞語句,就可以從陣列中過濾出我們想要的資料。非常方便。在Java中是沒有這種技術的,但是有開源的框架已經實現了此功能。


下面來看一下具體的例子吧:

Person.h

////  Person.h//  46_NSPredicate////  Created by jiangwei on 14-10-18.//  Copyright (c) 2014年 jiangwei. All rights reserved.
//#import <Foundation/Foundation.h>@interface Person : NSObject@property NSString *name;@property NSInteger age;+ (id)personWithName:(NSString *)name andAge:(NSInteger)age;@end


Person.m

////  Person.m//  46_NSPredicate////  Created by jiangwei on 14-10-18.//  Copyright (c) 2014年 jiangwei. All rights reserved.
//#import "Person.h"@implementation Person+ (id)personWithName:(NSString *)name andAge:(NSInteger)age{    Person *person = [[Person alloc] init];    person.name = name;    person.age = age;    return person;}- (NSString *)description{    NSString *s =[NSString stringWithFormat:@"name=%@,age=%ld",_name,_age];    return s;}@end
我們在Person類中定義屬性,還有一個產生物件的類方法,同時重寫了description方法,用於列印結果


測試方法

main.m

////  main.m//  46_NSPredicate////  Created by jiangwei on 14-10-18.//  Copyright (c) 2014年 jiangwei. All rights reserved.//#import <Foundation/Foundation.h>#import "Person.h"//謂詞,指定過濾器的條件,將符合條件的物件保留下來//一般用謂詞過濾陣列中指定的元素int main(int argc, const char * argv[]) {    @autoreleasepool {               NSArray *persons = [NSArray arrayWithObjects:                            [Person personWithName:@"mac" andAge:20],                            [Person personWithName:@"1" andAge:30],                            [Person personWithName:@"2" andAge:40],                            [Person personWithName:@"3" andAge:50],                            [Person personWithName:@"4" andAge:60],                            [Person personWithName:@"5" andAge:70],                            [Person personWithName:@"6" andAge:20],                            [Person personWithName:@"7" andAge:40],                            [Person personWithName:@"8" andAge:60],                            [Person personWithName:@"9" andAge:40],                            [Person personWithName:@"0" andAge:80],                            [Person personWithName:@"10" andAge:90],                            [Person personWithName:@"1" andAge:20]];                //年齡小於30        //定義謂詞物件,謂詞物件中包含了過濾條件        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age<%d",30];        //使用謂詞條件過濾陣列中的元素,過濾之後返回查詢的結果        NSArray *array = [persons filteredArrayUsingPredicate:predicate];        NSLog(@"filterArray=%@",array);                //查詢name=1的並且age大於40        predicate = [NSPredicate predicateWithFormat:@"name='1' && age>40"];        array = [persons filteredArrayUsingPredicate:predicate];        NSLog(@"filterArray=%@",array);                //in(包含)        predicate = [NSPredicate predicateWithFormat:@"self.name IN {'1','2','4'} || self.age IN{30,40}"];                //name以a開頭的        predicate = [NSPredicate predicateWithFormat:@"name BEGINSWITH 'a'"];        //name以ba結尾的        predicate = [NSPredicate predicateWithFormat:@"name ENDSWITH 'ba'"];                //name中包含字元a的        predicate = [NSPredicate predicateWithFormat:@"name CONTAINS 'a'"];                //like 匹配任意多個字元        //name中只要有s字元就滿足條件        predicate = [NSPredicate predicateWithFormat:@"name like '*s*'"];        //?代表一個字元,下面的查詢條件是:name中第二個字元是s的        predicate = [NSPredicate predicateWithFormat:@"name like '?s'"];                            }    return 0;}
首先我們看到,我們初始化了一定大小的陣列。

然後我們就可以使用NSPredicate類進行過濾操作了


1、查詢陣列中年齡小於30的物件

//年齡小於30//定義謂詞物件,謂詞物件中包含了過濾條件NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age<%d",30];//使用謂詞條件過濾陣列中的元素,過濾之後返回查詢的結果NSArray *array = [persons filteredArrayUsingPredicate:predicate];NSLog(@"filterArray=%@",array);
首先創立一個過濾條件:

//定義謂詞物件,謂詞物件中包含了過濾條件NSPredicate *predicate = [NSPredicate predicateWithFormat:@"age<%d",30];
這裡面操作很簡單的:@"age<%d",這個age是Person的屬性名,%d相當於佔位符,然後後面用引數替換即可

然後進行過濾操作,返回一個過濾之後的陣列物件

//使用謂詞條件過濾陣列中的元素,過濾之後返回查詢的結果NSArray *array = [persons filteredArrayUsingPredicate:predicate];


2、查詢name=1並且age大於40的集合

//查詢name=1的並且age大於40predicate = [NSPredicate predicateWithFormat:@"name='1' && age>40"];array = [persons filteredArrayUsingPredicate:predicate];NSLog(@"filterArray=%@",array);
當然我們也可以使用&&進行多條件過濾


3、包含語句的使用

//in(包含)predicate = [NSPredicate predicateWithFormat:@"self.name IN {'1','2','4'} || self.age IN{30,40}"];


4、指定字元開頭和指定字元結尾,是否包含指定字元

//name以a開頭的predicate = [NSPredicate predicateWithFormat:@"name BEGINSWITH 'a'"];//name以ba結尾的predicate = [NSPredicate predicateWithFormat:@"name ENDSWITH 'ba'"];//name中包含字元a的predicate = [NSPredicate predicateWithFormat:@"name CONTAINS 'a'"];


5、like進行匹配多個字元

//like 匹配任意多個字元//name中只要有s字元就滿足條件predicate = [NSPredicate predicateWithFormat:@"name like '*s*'"];//?代表一個字元,下面的查詢條件是:name中第二個字元是s的predicate = [NSPredicate predicateWithFormat:@"name like '?s'"];


總結

這一篇就介紹了OC中常用的技術:謂詞的使用,他用起來很方便的,而且也沒什麼難度,和我們當初在操作資料庫的時候很想,但是他對我們進行過濾操作提供了很大的便捷。









           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述