C++指向数组的指针作函数参数
一维数组名可以作为函数参数传递,多维数组名也 可作函数参数传递。
C++用字符数组存放一个字符串
在C++中可以用多种方法访问一个字符串,第一种字符数组:
#include<iostream>//预处理
using namespace std;//命名空间
int main()//主函数
{
char str[]="关注:C语言入门到精通";
cout<<str<<endl; return 0; //函数返回值为0;
}
编译运行结果:
关注:C语言入门到精通
--------------------------------
Process exited after 3.446 seconds with return value 0
请按任意键继续. . .
第二种,字符串变量,编译运行结果:
#include<iostream>//预处理
#include<string>
using namespace std;//命名空间
int main()//主函数
{
string str="关注:C语言入门到精通";
cout<<str<<endl; return 0; //函数返回值为0;
}
编译运行结果:
关注:C语言入门到精通
--------------------------------
Process exited after 1.862 seconds with return value 0
请按任意键继续. . .
第三种,字符指针变量,编译运行结果:
#include<iostream>//预处理
#include<string>
using namespace std;//命名空间
int main()//主函数
{
char *str="关注:C语言入门到精通";
cout<<str<<endl; return 0; //函数返回值为0;
}
编译运行结果:
关注:C语言入门到精通
--------------------------------
Process exited after 1.483 seconds with return value 0
请按任意键继续. . .
对字符串中字符的存取,可以用下标方法,也可以用指针方法。
8.4 C++字符数组存放字符串文章来源: zhuanlan.zhihu.com,作者:小林C语言,版权归原作者所有,如需转载,请联系作者。
原文链接:zhuanlan.zhihu.com/p/337766656