range_adapter::operator= (STL/CLR)

替换存储的迭代器对。

    range_adapter<Iter>% operator=(range_adapter<Iter>% right);

参数

  • right
    复制的适配器。

备注

运算符复制 right 到对象的成员,然后返回 *this。在 right使用它替换存储的迭代器对与中存储的迭代器的副本对。

示例

// cliext_range_adapter_operator_as.cpp 
// compile with: /clr 
#include <cliext/adapter> 
#include <cliext/deque> 
 
typedef cliext::deque<wchar_t> Mycont; 
typedef cliext::range_adapter<Mycont::iterator> Myrange; 
int main() 
    { 
    cliext::deque<wchar_t> d1; 
    d1.push_back(L'a'); 
    d1.push_back(L'b'); 
    d1.push_back(L'c'); 
    Myrange c1(d1.begin(), d1.end()); 
 
// display contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// assign to a new container 
    Myrange c2; 
    c2 = c1; 
    for each (wchar_t elem in c2) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

要求

标题: <cliext/适配器>

命名空间: cliext

请参见

参考

range_adapter (STL/CLR)