Chinaunix首页 | 论坛 | 博客
  • 博客访问: 415613
  • 博文数量: 54
  • 博客积分: 1186
  • 博客等级: 少尉
  • 技术积分: 668
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-11 04:57
文章分类

全部博文(54)

文章存档

2013年(1)

2012年(6)

2011年(47)

我的朋友

分类: C/C++

2011-05-18 18:58:31

#include
#include
#include
struct TEST {
    int x;
    int y;
};
int main()
{
    std::vector str;
    std::vector< std::vector > s;

    str.push_back( "a" );
    str.push_back( "b" );
    s.push_back( str );

    str.clear();

    str.push_back( "c" );
    str.push_back( "d" );
    s.push_back( str );

    std::vector >::iterator i;

    for ( i = s.begin(); i != s.end(); i++ )
    {
        std::vector::iterator ii;
        for ( ii = i->begin(); ii != i->end(); ii++ )
        {
            std::cout << *ii << "\t";
        }
        std::cout << std::endl;
    }
    return 0;
}


$ g++ test.cpp
$ ./a.out
a       b
c       d

阅读(1515) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~