Extends abstract class : abstract class « Class « 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 » Class » abstract class 
Extends abstract class
 
#include "stdafx.h"
using namespace System;

ref class AbstractBaseClass abstract{
protected:
    int AbstractVar;
    AbstractBaseClass(int val): AbstractVar(val) {}
public:
    virtual void Method1() 0;  // unimplemented method
    virtual void Method2() 0;  
    void Method3()
    {
        Console::WriteLine(AbstractVar.ToString());
    }
};

ref class MidAbstractBaseClass abstract public AbstractBaseClass
{
public:
    virtual void Method1() override sealed
    {
        Console::WriteLine((AbstractVar * 3).ToString());
    }
protected:
    MidAbstractBaseClass(int val: AbstractBaseClass(val) {}
};

ref class DerivedExClass : public MidAbstractBaseClass
{
public:
    DerivedExClass(int val: MidAbstractBaseClass(val) {}
    virtual void Method2() override
    {
        Console::WriteLine((AbstractVar * 2).ToString());
    }
};

void testMethod(AbstractBaseClass ^aec)
{
    aec->Method1();
    aec->Method2();
    aec->Method3();
}

void main()
{
    AbstractBaseClass ^Ab1 = gcnew DerivedExClass(5);
    Ab1->Method1();
    Ab1->Method2();
    Ab1->Method3();

    AbstractBaseClass ^Ab2 = gcnew DerivedExClass(6);
    testMethod(Ab2);

    DerivedExClass ^dc = gcnew DerivedExClass(7);
    testMethod(dc);


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