Pop pets from stack top till empty : Stack « Collections « Visual C++ .NET






Pop pets from stack top till empty

 

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

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){
    stack<MyClass^> pets;

    pets.push(gcnew MyClass("A"));
    pets.push(gcnew MyClass("B"));
    pets.push(gcnew MyClass("C"));
    pets.push(gcnew MyClass("D"));


    while (!pets.empty())
    {
        Console::Write("{0} ", pets.top()->Name);
        pets.pop();
    }

    return 0;
}

   
  








Related examples in the same category

1.Push value to a Stack
2.Get element count for a Stack
3.Call Pop method to remove element from a Stack
4.Push value to stack