一:
vector 中刪除重複的元素:
a.erase(unique(a.begin(), a.end()),a.end());
s格式符,用來輸出乙個字串。有以下幾種用法
1.%s 輸入字串
2.%ms 輸出字串佔m列,如果字串本身長度超過m,則可以超過m列,全數輸出,若果字串小於m,則左補空格
3.%-ms 輸出字串佔m列,如果字串小於m,則字串靠左,右補空格
4.m.ns 輸出佔m列,但是只取字串中的左端n個字元,這n個字元輸入輸出在m列的右列, 左補空格
二: 兩個數異或等於0
三: npos可以表示string的結束位子,是string::type_size 型別的,也就是find()返回的型別。find函式在找不到指定值得情況下會返回string::npos
str[i + 1].find(str[i]) == str[i + 1].npos
四: istringstream是乙個比較有用的c++的輸入輸出控制類。
c++引入了ostringstream、istringstream、stringstream這三個類,要使用他們建立物件就必須包含這個標頭檔案。
istringstream類用於執行c++風格的串流的輸入操作。
ostringstream類用於執行c風格的串流的輸出操作。
strstream類同時可以支援c風格的串流的輸入輸出操作。
istringstream的建構函式原形如下:
istringstream::istringstream(string str);
它的作用是從string物件str中讀取字元。
#include
#include//istringstream 必須包含這個標頭檔案
#include
using namespace std;
int main()
cout<}
return 0;
}
TestLink知識點Mantis知識點
testlink知識點 1 testlink系統提供了六種角色 a guest 只有讀的許可權,適合於檢視測試用例和測試需求,以及專案分析的使用者。b testdesigner 可以開展測試用例和測試需求的所有工作。c tester 只能執行測試用例。d senior tester 可以檢視和維護測...
python大一知識點 python知識點複習
放假歸來,這幾天複習了一下好久不用的python,總結了一下知識點。語法基礎tuple與list的異同都由多個元素組成 tuple由 組成,list由組成 tuple不可變,list可變 tuple表示的是一種結構,而list表示的是多個事物的集合 tuple操作比list快 字串用法要點 轉義符和...
mysql常用知識點 mysql 常用知識點。
mysql u root p show databases show tables select from abc order by id limit 0,10 create database bbb exit mysqldump u root p game home backup.sql mysq...