Generic Class Demo : Generic Class « Generics « Visual C++ .NET

Home
Visual C++ .NET
1.2D
2.Class
3.Collections
4.Data Type
5.Database ADO.net
6.Delegate
7.Development
8.File Directory
9.Function
10.Generics
11.GUI Form
12.Language Basics
13.Network
14.Reflection
15.Security
16.Statement
17.Structure
18.Thread
19.XML
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Visual C++ .NET » Generics » Generic Class 
Generic Class Demo
 
#include "stdafx.h"
using namespace System;
generic<class K, class V> where K : IComparable
ref class KVClass{
public:
    property K Key;
    property V Value;
    KVClass(K key, V value);

    V isGreater(KVClass ^in);
};
generic<class K, class V>
KVClass<K,V>::KVClass(K key, V value)
{
    Key = key;
    Value = value;
}


generic<class K, class V>where K : IComparable
V KVClass<K,V>::isGreater(KVClass ^in){
    if (Key->CompareTo(in->Key0)
        return Value;
    else
        return in->Value;
}
void main(){
    KVClass<int,String^> ^a = gcnew KVClass<int,String^>(5"Five");
    KVClass<int,String^> ^b = gcnew KVClass<int,String^>(6"Six");

    Console::WriteLine(a->isGreater(b));

    KVClass<String^,int> ^t = gcnew KVClass<String^,int>("A"1);
    KVClass<String^,int> ^c = gcnew KVClass<String^,int>("B"2);

    Console::WriteLine(t->isGreater(c));


   
  
Related examples in the same category
1.Generic class for value type
2.Generic class definition
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.