| 4 | using namespace std; |
| 5 | |
| 6 | int main () |
| 7 | { |
| 8 | set<string> myset= {"Java", "C++","SQL"}; |
| 9 | |
| 10 | // 显示内容: |
| 11 | for (auto it = myset.cbegin(); it != myset.cend(); ++it) |
| 12 | cout <<*it << '\n'; |
| 13 | |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected