记一些stl的用法(持续更新)
Posted 天下风云出我辈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一些stl的用法(持续更新)相关的知识,希望对你有一定的参考价值。
有些stl不常用真的会忘qwq,不如在这里记下来,以后常来看看
C++中substr函数的用法
1 #include<string> 2 #include<iostream> 3 using namespace std; 4 5 void main() 6 { 7 string s("12345asdf"); 8 string a=s.substr(0,5); 9 cout<<a<<endl; 10 }
(以上转自:https://www.cnblogs.com/cynthia-dcg/p/6182514.html)
以上是关于记一些stl的用法(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章