?? stl-find.cc
字號:
// Filename: STL-find.cc// Use of the find function.#include <iostream>#include <algorithm>#include <string>using namespace std;int main() { string words[5] = { "my", "hop", "mop", "hope", "cope" }; string* where; where = find(words, words + 5, "hop"); cout << *++where << endl; //mop sort(words, words + 5); where = find(words, words + 5, "hop"); cout << *++where << endl; //hope}/*outOOP> gpp STL-find.ccOOP> a.outmophopeOOP>*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -