當前位置:成語大全網 - 書法字典 - 為什麽字典裏沒有零?

為什麽字典裏沒有零?

1,

Nil:指向oc中對象的空指針

nil:oc中指向類的空指針

NULL:指向其他類型的空指針,例如c類型的內存指針。

NSNull:在集合對象中,表示空值的對象。

如果obj為零:

【objmessage】將返回NO而不是NSException。

如果obj為NSNull:

【objmessage】將引發異常n exception。

2,

從字面上理解Nil和NULL相對簡單。nil是對象,NULL是值。我的理解是nil將對象設置為空,NULL將基本類型設置為空。此外,當我們為nil調用該方法時,我們不會生成崩潰或引發異常。

看用法

NSURL * url = nil

Class class = Nil

int * pointerInt = NULL

Nil是對象指針為空,nil是類指針為空,NULL是基本數據類型為空。

這五個概念很容易混淆,在某些情況下它們有相同的用法。首先解釋壹下“空指針”的含義,空指針是指指針沒有指向有意義的內存區域。比如int * p;int * p = NULL

ns object * obj 1 =【【ns object alloc】init】;

ns object * obj 2 =【ns null null】;

ns object * obj 3 =【ns object new】;

NSObject * obj4

NSArray * arr 1 =【NSArray arrayWithObjects:obj 1,obj2,obj3,obj4,nil】;

NSLog(@“arr1計數:%ld“,【arr 1計數】);//count: 3因為obj=nil,所以添加obj4時添加對象就完成了。

ns object * obj 1;

ns object * obj 2 =【【ns object alloc】init】;

ns object * obj 3 =【ns null null】;

ns object * obj 4 =【ns object new】;

NSArray * arr 2 =【NSArray arrayWithObjects:obj 1,obj2,obj3,obj4,nil】;

NSLog(@“arr2計數:%ld“,【arr 2計數】);//count: 0,因為obj1=nil,所以不添加以下對象。

【NSNull null】通常充當占位符,如下所示:

ns object * obj 1 =【ns null null】;

NSArray * arr 1 =【NSArray arrayWithObjects:@“One“,@“TWO“,obj1 ,@“three“,nil】;

for(ns string * str in arr 1 ){

NSLog(@“數組對象:%@“,str);

}//結果:壹、二、三

ns object * obj 1 =【ns null null】;

NSArray * arr 1 =【NSArray arrayWithObjects:@“One“,@“TWO“,obj1 ,@“three“,nil】;

for(ns string * str in arr 1 ){

if(str!=【ns null】){

NSLog(@“數組對象:%@“,str);

}

}//結果:壹、二、三