I am extending some of the basic data types in vb.net for a large application. This includes integer, string, short, etc. As it stands, my new data type objects have names like MYInteger and MYString. Since these are the only types I'm using for my application and they are mostly compatible with the default types, is there a way I can override the defaults with mine so when you Dim iThing as Integer you're actually using my slightly customized integer type?
|
|
|||||||||||||
|
|
No. If you could, then imagine the chaos that would cause. There would be two possibilities in this scenario:
You can add extension methods to sealed types. Something like:
|
|||
|
|
|
I don't know if it applies in your case, but sometimes people want to make what amounts to "specialized" scalar/primitive types. For example, see some of the types defined in this codeplex project. Some of the types include Latitude, Longitude, Angle, etc. Each of these types is actually a struct with a single data member, usually a double, float, or int/long, such as this:
Technically, these types are just class or structs (primarily structs in the case of the linked project), but they are used to represent values that are often (usually?, almost always??) simply scalar values. If you have an object that has an Angle property, most people would probably just make that a double.
When a value is assigned to AngleInDegrees, MyObject might want to do some processing:
What if you had an AngleInDegrees property on many objects? What if you have a class that consumes angles produced by other components in your application? Who should do the validation? It is useful to be able to count on always working with "good" angles? By having an AngleInDegrees type, it becomes possible to put all validation and special "Angle" operations in the type. It also becomes possible to strongly type all of the places where you want to use AngleInDegrees. As I said, I don't know if this is the type of thing that you are trying to achieve or not. It just occurred to me as I read your question that I had sort of the same thought when I first saw the project that I linked (i.e. that it seemed that they were, in effect, subclassing the primitive data types to make more restrictive primitive types). |
|||
|
|
|
I'm not sure if you really want to do that. It will make it more difficult to maintain in the future. Why not just use MyInteger,etc. If you are importing external source code, just do a find&replace. |
|||||
|
