码迷,mamicode.com
首页 > 其他好文 > 详细

今天开始学习STL啦。一个祖祖辈辈流传下来的东西。弊端都被抛弃光了。来试一试。

时间:2017-10-10 20:27:35      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:span   har   ring   iostream   empty   pac   return   ace   blog   

//关于使用string
#include <iostream>
#include "string"
using namespace std;

int main()
{
	string str;
	cout << str << str.empty() << endl;//STL中包含了函数名重载.
	
	string str1(5,‘a‘);//赋值字符串5个a 
	cout << str1 <<"	"<<str1.empty()<<endl;//str.empty中空的值为1,非空为0 
	
	string str2("abcdefg");//直接赋值abcdefg 
	cout << str2 <<endl;
	
	string str3("abcdefg" , 3);//截取前3个字符串 
	cout << str3 <<endl;

	string str4(str2 , 3 , 2 );//在a3的位置开始截取2个长度 
	cout << str4 <<endl;
	
	string str5(str2);//拷贝构造
	cout << str5 <<endl;
	
	system ("pause");
	return 0;
 } 
//关于使用string
#include <iostream>
#include "string"
using namespace std;

int main()
{
    string str;
    cout << str << str.empty() << endl;//STL中包含了函数名重载.
    
    string str1(5,a);//赋值字符串5个a 
    cout << str1 <<"    "<<str1.empty()<<endl;//str.empty中空的值为1,非空为0 
    
    string str2("abcdefg");//直接赋值abcdefg 
    cout << str2 <<endl;
    
    string str3("abcdefg" , 3);//截取前3个字符串 
    cout << str3 <<endl;

    string str4(str2 , 3 , 2 );//在a3的位置开始截取2个长度 
    cout << str4 <<endl;
    
    string str5(str2);//拷贝构造
    cout << str5 <<endl;
    
    system ("pause");
    return 0;
 } 

 

请使用手机"扫一扫"x

今天开始学习STL啦。一个祖祖辈辈流传下来的东西。弊端都被抛弃光了。来试一试。

标签:span   har   ring   iostream   empty   pac   return   ace   blog   

原文地址:http://www.cnblogs.com/666fengmo666/p/7647311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!