Insert from .NET generic List : list « Collections « Visual C++ .NET






Insert from .NET generic List

 
#include "stdafx.h"
#include <cliext/set>

using namespace System;
using namespace cliext;
using namespace System::Collections::Generic;

ref class MyClass{
public:
    String^ Name;

    MyClass() : Name(String::Empty) { }

    MyClass(String^ name) : Name(name) { }

    MyClass(const MyClass% orig){
        Name = orig.Name; 
    }
    MyClass% operator=(const MyClass% orig){
        if (this != %orig)
            Name = orig.Name;
        return *this;
    }
    ~MyClass() { }
    bool operator<(const MyClass^ rhs){
        return (Name->CompareTo(rhs->Name) < 0);
    }
    bool operator==(const MyClass^ rhs){
        return (Name->Equals(rhs->Name));
    }
};

int main(array<System::String ^> ^args)
{
    set<MyClass^> pets; 
    MyClass^ King = gcnew MyClass("K");

    pets.insert(pets.end(), gcnew MyClass("A"));
    pets.insert(King); 
    pets.insert(gcnew MyClass("B"));
    
    List<MyClass^>^ morepets = gcnew List<MyClass^>();
    morepets->Add(gcnew MyClass("D"));
    morepets->Add(gcnew MyClass("AA"));
    pets.insert(morepets);

    for each (MyClass^ pet in pets) 
        System::Console::Write("{0} ", pet->Name); 
    return (0);
}

   
  








Related examples in the same category

1.Add to list with push_front
2.Loop through a list with for loop
3.Get the first element in a list
4.Insert to a list
5.For each loop and list
6.Merge lists by greater-functor
7.Pointer for list element
8.Splice a list
9.Add your class to a generic List
10.Insert element to a list
11.Adding one list to another list
12.For loop and element count
13.List.FindAll with predicate
14.List.ForEach and Action