1.int 轉 string
標頭檔案 #include
int x;
stringstream sd;
sd << x;
string str = sd.str();
標頭檔案 #include
strstream ss;
int sum = 0;
string c;
ss << sum;
ss >> c;
2.string 轉 int
int temp ;
string a="asd";
temp = atoi(a.c_str());//將string 轉化為char* 轉化成十進位制數字
//在gcc編譯器下 itoa 函式可能會報錯 因為不是標準功能函式
//附乙個判斷string 是不是 int 的函式
bool isnum(string str)
//返回在字串中首次出現的不匹配str中的任何乙個字元的首字元索引, 從index開始搜尋, 如果全部匹配則返回string::npos。
latex word相互轉換
有時還是不得不把 latex 寫的文件轉成 word。一些可行的辦法有 1 先用 tth 或 latex2html 之類的工具把 latex 轉成 html,再把 html 轉成word。2 先生成 pdf,再用 pdf2word 轉成word。3 安裝 tex2word 用 word 開啟 lat...
IplImag HImage相互轉換
iplimage himagetoiplimage hobject hobj if htchannels 0 i 3 cvmerge pimageblue,pimagegreen,pimagered,null,pimage cvreleaseimage pimagered cvreleaseimag...
Bitmap Drawable相互轉換
一 bitmap轉drawable bitmap bm 根據你的情況獲取 bitmapdrawable bd new bitmapdrawable bm android開發網提示因為btimapdrawable是drawable的子類,最終直接使用bd物件即可。二 drawable轉bitmap 轉...