//新增我們的測試**
nsdictionary
*dictionary = [
nsdictionary
dictionarywithobjectsandkeys
:@"lucy",@"name",@"15810463139",@"number",
nil];
//得到詞典的數量
nsinteger mcount = [dictionary count];
nslog(@"
詞典的數量為:
%ld",(long)mcount);
//得到詞典中所有key值
nsenumerator * enumeratorkey = [dictionary keyenumerator];
//快速列舉遍歷所有key的值
for (nsobject *object in enumeratorkey)
//得到詞典中所有value值
nsenumerator * enumeratorvalue = [dictionary objectenumerator];
//快速列舉遍歷所有value的值
for (nsobject *object in enumeratorvalue)
//通過key找到value
nsobject *object = [dictionary objectforkey:@"name"];
if (object != nil)
oc75 不可變字典NSDictionary
nsdictionary import int main int argc,const char ar 注意 key和value 是一一對應 nsdictionary dict2 nsdictionary dictionarywithobjects lnj 30 1.75 forkeys name ...
常用簡單演算法
氣泡排序,外迴圈控制輪數,內迴圈比較大小 for int i 0 ia j 1 for int x 0 xs new hashset hashset用來去掉重複 for object o array 現在的集合s中無重複的包含array中的所有元素 object obj s.toarray 把集合s...
簡單python常用模組
1.作業系統相關 1 os模組 系統環境變數 os.environ linux系統上的檔案處理 程序處理 2 sys模組 獲取傳入給程式的外部引數argv 從外部獲取的para都是string引數,儲存在sys.argv裡面 程序的輸入輸出流sys.stdout,sys.stdin import s...