技術備份整理

2021-09-07 18:27:43 字數 2166 閱讀 2586

1:小數點位數不能超過2

double dprice = 5.677f;

stringstream streamprice;  

streamprice << fixed << setprecision(2) << dprice;  

string strprice = streamprice.str();

2:int轉string

stringstream stringstream;

stringstream << (int)uid;

string strid = stringstream.str();

3:cstring轉string

cstring strnumber;

string snumber = 「12345」;

strnumber = t2a(snumber);

4:判斷字串是否是a,b,a,b

cstring strnormal = _t("a,b,");

cstring strputin = _t("a");

bool bfind = -1 != strnormal.find(strputin.makeupper()+_t(","));

5:獲取當前時間

coledatetime oletoday = coledatetime::getcurrenttime();

cstring strdate = oletoday.format(_t("%y-%m-%d")); //日期

cstring strtime = oletoday.format(_t("%h:%m:%s")); //時間

6:wstring轉int,wstring轉列舉

wstring strnum = "123";

int nnum = _ttoi(strnum.c_str());

em_number emnumber = (em_number)_ttoi(strnum.c_str());

7:遞迴遍歷資料夾下的檔案

void oncheckfileexist(cstring strpath)

cfilefind filefinder;

bool bret = filefinder.findfile(strpath);

while(bret)

cstring strfilename = filefinder.getfilename();//找到檔案,輸出檔名;

cstring strfileext = ::pathfindextension(strfilename);//獲取檔案字尾(檔案型別)

strfileext.makelower();

cstring strrenamefile = strfilename + _t(「123」);

movefile(strfilename ,strrenamefile);//重新命名 }}

8:彈出選擇資料夾對話方塊

bool onbrowsefile()

;

browseinfo bi;

zeromemory(&bi,sizeof(browseinfo));

bi.hwndowner = null;

bi.pszdisplayname = szbuffer;

bi.lpsztitle = _t("請選擇資料夾:");

bi.ulflags = bif_dontgobelowdomain | bif_returnonlyfsdirs | bif_newdialogstyle ;

lpitemidlist idl = shbrowseforfolder(&bi);

if (null == idl)

shgetpathfromidlist(idl,szbuffer);

onvaildfolder(szbuffer);

return true;

}9:獲取當前執行程式所在目錄

tchar szpath[260] = ;

getmodulefilename(getmodulehandle(null), szpath, max_path);

cstring strpath(szpath);

strpath = strpath.left(strpath.reversefind('\\'));

備份standby技術

兩個路由器,乙個是主路由,乙個是備份路由 兩個路由器下面接著乙個交換機,交換機下面接著兩個終端主機 有圖的話就好了,可惜這個無法上船 左邊的路由的閘道器設定為192.168.1.253 右邊的路由的閘道器設定為192.168.1.254 虛擬ip位址設定為192.168.1.250 設定步驟為 1,...

鏈路備份技術

為了保持網路的穩定性,在多台交換機組成的網路環境中,通常都使用一些備份連線以提高網路的穩定性,健壯性,這樣的鏈結稱之為備份鏈路或冗餘鏈路。在骨幹裝置連線中,單一鏈路的鏈結很容易實現,但乙個簡單的鼓掌就會就會造成網路的中斷,因此在實際網路的組建過程中,為了保持網路的穩定性,在多台交換機組成的網路環境中...

Vim常用操作整理備份

1.上下左右移動游標 h 左 l 右 k 上 j 下 2.刪除一行 dd 3.刪除乙個字元 x 4.刪除乙個換行符 j 5.在游標下方新建一行,並且進入插入模式 o 小寫字母o 6.在游標上方新建一行,並且進入插入模式 o 大寫字母o 8.游標移動到前一單詞的詞首 b 10.游標移動到前一單詞的詞尾...