vote up 8 vote down star

What is a wrapper class?
How are such classes useful?

flag

53% accept rate
5  
Given that most of your questions are basic ones that could be answered by reading a beginners .NET book, plus a book on basic design patterns, it may be worth going out and buying those...? – Greg Beech May 20 at 17:19
6  
Stack Overflow is free though. And right at everyone's fingertips. Books are too heavy. – jjnguy May 20 at 17:21
4  
He is obviously here only for the reputation gained by asking stupid questions. Not to learn anything. People who are serious about learning do not ask basic/conceptual questions on online forums. – Cerebrus May 20 at 17:24
3  
@jjnguy - sure, but you'll only get answers to the questions you thought to ask. A good book will answer the questions you wouldn't have thought of, and thus be much more valuable. – Greg Beech May 20 at 17:24
3  
More importantly, if we don't have these questions here then we won't be able to link back to them when closing the next batch of ultra-basic questions as exact duplicates... – Shog9 May 20 at 17:33
show 9 more comments

8 Answers

vote up 2 vote down check

In general, a wrapper class is any class which "wraps" or "encapsulates" the functionality of another class or component. These are useful by providing a level of abstraction from the implementation of the underlying class or component; for example, wrapper classes that wrap COM components can manage the process of invoking the COM component without bothering the calling code with it. They can also simplify the use of the underlying object by reducing the number interface points involved; frequently, this makes for more secure use of underlying components.

link|flag
vote up 0 vote down

There are several design patterns that can be called wrapper classes.

See my answer to "How do the Proxy, Decorator, Adaptor, and Bridge Patterns differ?"

link|flag
vote up 1 vote down

It might also be valuable to note that in some environments, much of what wrapper classes might do is being replaced by aspects.

EDIT:

In general a wrapper is going to expand on what the wrappee does, without being concerned about the implementation of the wrappee, otherwise there's no point of wrapping versus extending the wrapped class. A typical example is to add timing information or logging functionality around some other service interface, as opposed to adding it to every implementation of that interface.

This then ends up being a typical example for Aspect programming. Rather than going through an interface function by function and adding boilerplate logging, in aspect programming you define a pointcut, which is a kind of regular expression for methods, and then declare methods that you want to have executed before, after or around all methods matching the pointcut. Its probably fair to say that aspect programming is a kind of use of the Decorator pattern, which wrapper classes can also be used for, but that both technologies have other uses.

link|flag
vote up 0 vote down

a wrapper class is usually a class that has an object as a private property. the wrapper implements that private object's API and so it can be passed as an argument where the private object would.

say you have a collection, and you want to use some sort of translation when objects are added to it - you write a wrapper class that has all the collection's methods. when add() is called, the wrapper translate the arguments instead of just passing them into the private collection.

the wrapper can be used anyplace a collection can be used, and the private object can still have other objects referring to it and reading it.

link|flag
vote up 4 vote down

A wrapper class doesn't necessarily need to wrap another class. It might be a API class wrapping functionality in e.g. a dll file.

For example it might be very useful to create a dll wrapper class, which takes care of all dll initialization and cleanup and create class methods that wrap function pointers created from e.g. GetProcAddress()

Cheers !

link|flag
vote up 1 vote down

A wrapper class is a class that "wraps" around something else, just like its name.

The more formal definition of it would be a class that implements the Adapter Pattern. This allows you to modify one set of APIs into a more usable, readable form. For example, in C#, if you want to use the native Windows API, it helps to wrap it into a class that conforms to the .NET design guidelines.

link|flag
vote up 0 vote down

A wrapper class is a class that is used to wrap another class to add a layer of indirection and abstraction between the client and the original class being wrapped.

link|flag
vote up 14 vote down

Just what it sounds like: a class that "wraps" the functionality of another class or API in a simpler or merely different API.

See: Adapter pattern, Facade pattern

link|flag
1  
+1 for the links – Patrick McDonald May 20 at 17:21
+1 for the +1 - – Bratch May 20 at 18:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.