码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-05-15 10:37:35      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

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

 

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

标签:

原文地址:http://www.cnblogs.com/acode/p/4505195.html

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