C 迭代的多種寫法

2021-10-02 15:46:31 字數 686 閱讀 3701

老九學堂的網課中,列舉出c++迭代的多種寫法:

第一種正常寫法:

void landowner::showcards(const vector& cards) 

cout << endl;

}

第二種c語言的習慣,使用迭代器:

void landowner::showcards(const vector& cards) 

cout << endl;

}

第三種c++11的型別推斷:

void landowner::showcards(const vector& cards) 

cout << endl;

}

第四種c++11的區間遍歷: 

void landowner::showcards(const vector& cards) 

cout << endl;

}

第五種使用演算法的方式,將容器中的內容複製發哦cout繫結的迭代器中

(需要新增  #include#include:

#include#includevoid landowner::showcards(const vector& cards)

委託的多種寫法

一 委託呼叫方式 1.最原始版本 delegate string plusstringhandle string x,string y class program static string plusstring string x,string y 2.原始匿名函式版 去掉 plusstring 方...

Qt connect的多種寫法

自 加 在main函式中寫乙個定時器,並啟動 1 qtimer timer 2 qobject connect timer,qtimer timeout,5 timer.start 500 1 最基本的,4個引數 1 阻塞 2qeventloop loop 3 qobject connect thi...

main函式的多種寫法

int main int argc,char argv int main void 最好main 函式向系統返回乙個整型,表示函式正常結束。我只推薦上面兩種寫法 關於main函式的其他幾種寫法,也列舉出來做比較 void main 我們一般使用這種寫法,第一很多書上也是這樣寫的,第二不要int也能正...