一些NS類的用法

2021-06-08 23:50:30 字數 417 閱讀 7788

1、nsnofound

在nsobjcruntime.h中,nsnofound的定義為

#define nsintegermax    long_max

enum;

nsnofound是指nsinteger的最大值,一般理解為沒找到符合要求的。

2、nsassert

nsassert()函式——

開發ios程式時的除錯函式

。**如下:   

nsassert(x!=0,@"x must not be zero");

在表示式「x!=0」不成立時,程式就會丟擲異常,並顯示自定義的訊息"x must not be zero",並同時顯示出錯的檔案、**和呼叫函式等資訊,是乙個程式追蹤的很好手段。假設x!=0,不滿足要求就提示reason-x must not be zero

FileStream類的一些用法

引用命名空間 using system.io 一 讀取檔案 filestream 類只能處理原始位元組 raw byte filestream 類可以用於任何資料檔案,而不僅僅是文字檔案。filestream 物件可以用於讀取諸如影象和聲音的檔案,filestream讀取出來的是位元組陣列,然後通過...

C String類的一些用法

string類的大部分函式 begin 得到指向字串開頭的iterator end 得到指向字串結尾的iterator rbegin 得到指向反向字串開頭的iterator rend 得到指向反向字串結尾的iterator size 得到字串的大小 length 和size函式功能相同 max si...

stringBuilder類的一些用法

對字串進行大量操作時比如拼接 擷取,會在記憶體中新建很多字串物件。為了減少記憶體開支,可以使用stringbuilder型別。建立stringbuiler例項 用建構函式直接建立 stringbuilder mystringbuilder new stringbuilder hello world ...