QT QHash 使用方法例項

2021-08-03 12:43:57 字數 638 閱讀 9000

qhash是乙個在雜湊表中儲存鍵值對的資料結構。它的介面幾乎與qmap相同,但是與qmap相比,它對k的模板型別有不同的要求,而且它提供了比qmap更快的查詢功能。

#include
qhashmap;

map.insert("3name", "leo");

map.insert("1age", "18");

map.insert("2like", "eat");

map.insert("4***", "man");

qhash::iterator i;

for( i=map.begin(); i!=map.end(); ++i)

qdebug() << i.key() <<"        " << i.value();

//生成一張雜湊表,遍歷時候怎麼新增就怎麼展示

qdebug() << "---------------------------------";

qhash::iterator mi;

mi = map.find("2like");

if(mi != map.end())

}

requireJs使用方法專案例項

首先,定義 main.js 和 事件處理的公共 js main.js 主要是定義引用名稱和路徑的對應關係 事件繫結模組 寫jsp頁面 jsp中先引入 require.js 和 main.js 然後寫主模組 require 內容 圖中的this是傳遞的引數,這裡指的是,被點選的元素的js物件。然後是 ...

vc Edit Box 使用方法詳解和小例項

setsel start,end 作用 定製edit的所選擇內容.間接地可以用於定位游標位置.使用例子 exp1 設定游標 cedit pedit cedit getdlgitem idc edit1 pedit setsel 2,2 pedit setfocus exp2 選擇內容 cedit p...

Python gzip庫函式使用方法及例項

解壓gzip檔案示例 import gzip f gzip.open file.txt.gz rb file content f.read f.close 建立gzip檔案 import gzip content lots of content here f gzip.open file.txt.g...