字符串数组的两种定义方式

C++实现字符串数组的两种方式

1、常用的方法

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string str[]={"hello", "string", "world"};
    int str_size=sizeof(str)/sizeof(string);
    cout<<"size of str is "<<str_size<<endl;

    for (int i=0;i<str_size;++i)
        cout<<str[i]<<endl;
}

2.采用指针的方法

#include <iostream>
using namespace std;

int main()
{
    char *a[] = { "hello", "string", "world" };
    int a_size = sizeof(a) / sizeof(char *);
    cout << a_size << endl;

    for (int i = 0; i<a_size; i++)
        cout << *(a+i) << endl;

    return 0;
}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。