<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");
}