字符数组,字符串、数字转化

<p style="margin-top: 5px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; line-height: 26px; word-wrap: break-word; color: rgb(102, 102, 102); font-family: 宋体, Arial; font-size: 16px;">//***************************************************</p><p style="margin-top: 5px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; line-height: 26px; word-wrap: break-word; color: rgb(102, 102, 102); font-family: 宋体, Arial; font-size: 16px;">//更多精彩,欢迎进入:http://shop115376623.taobao.com</p><p style="margin-top: 5px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; line-height: 26px; word-wrap: break-word; color: rgb(102, 102, 102); font-family: 宋体, Arial; font-size: 16px;">//***************************************************</p>
</pre><pre name="code" class="cpp">// String2Char2Data.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include "iostream"
#include "string"
using namespace std;  
int main()
{
字符数组换为字符串
// 	char a[10]="aaaabbbba";
// 	string s(&a[0],&a[strlen(a)]);//strlen:求字符串长度,测量字符串长度的函数   s(字符数组a开始的地址,字符数组a结束的地址)
// 	cout<<s<<endl;
// 	system("pause");


// 	把字符串转换为字符数组
// 	string s="aaaavvva";  
// 	char a[10]; 
// 	strncpy(a,s.c_str(),s.length());//strncpy:将字符串src中最多n个字符复制到字符数组dest中
// 	/*c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同. 
// 	这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。*/
// 	for(int i=0;i<s.length();i++) 
// 	{
// 		cout<<a[i]<<" "; 
// 	}
// 	cout<<endl;
// 	system("pause");


// 	把字符数组转换为数字
// 	//char a[2] = "a";
// 	char a[4] = "123";
// 	int x;
// 	x=atoi(a); 
// // 	atoi函数原型: 
// // 		int atoi(char *str) 
// // 		函数用途: 
// // 		将字符串转换成一个整数值 
// // 		输入参数: 
// // 		str 待转换为整型数的字符串 
// // 		返回值: 
// // 		成功返回转换后的数值,失败则返回0.
// 	cout<<x+1<<endl; 
// 	getchar();
// 	system("pause");
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值