tags:

views:

134

answers:

2

Hi All,

I am building some material for OOP (object oriented programming) in VBA, so can anybody list me the OOP concepts which are available in VBA?

for example from my reading I discovered that:

  1. inheritance is not available in VBA !!!
  2. encapsulation concept is there as you can use access modifier "private" and build a public property.

Thank you,

+5  A: 

VBA supports some OO concepts, and not others.

with VBA you can create your own classes, and you can create objects from those classes. However, VBA does NOT support Inheritance, and does not truly support 'polymorphism' in the classical meaning of the term as used in OO languages such as C++, or .NET.

VBA classes do support encapsulation, and abstraction.

cerealk
+2  A: 

Here are some observations I've made while working with OOP concepts in VBA:

  • You cannot overload methods in VBA. However, you do have optional parameters at your disposable, for better or for worse.
  • You have one parameterless Class_Initialize method that is called when the object is instantiated, but it cannot be overloaded to handle parameters. If you want to force your class to not be "fully functional" without having certain properties set, you'll have to write your own way to do so.
  • The VB6 and VBA editing environment forces you to build "class files" and keep each class in a separate file, which are distinct from modules.
  • Classes and Modules can both have public and private fields. A public field in a module is essentially a global variable.
  • Modules are functionally similar to static classes in C#. Public code can be called from the modules anywhere within your application.

The VB6/VBA paradigm envisions classes as a way to encapsulate an object's functionality and properties. In this sense, VB6/VBA's objects exist just like any other basic OOP environment and their use and design should be encouraged where appropriate.

However, the lack of several key OOP features cause VB6/VBA to fall short in being able to thoroughly implement a complete OOP design pattern.

Ben McCormack
VBA does actually support interfaces, an abstract class called IFoo can be implemented using `Implements IFoo` in any number of other classes, all of which can be passed about as IFoos.
Alex K.
@Alex That's right. I had forgotten about interfaces in VB6 because if I recall, their use is still pretty limited.
Ben McCormack