Type Systems Demystified |
Written by Nikos Vaggalis | |||||||
Friday, 19 February 2010 | |||||||
Page 5 of 6
True dynamically typed languagesThe most famous example of dynamic typing is Perl where a scalar value variable can hold any type of value. The following are all legal in Perl: my $a = "this is a string"; #string You don't declare a type on the variable thus the variable is 'untyped' and, as you can see, the value that the variable points to can be of any type and can change during runtime, since the variable can hold any type. In essence it behaves like a Variant in VB6 or as an Object in C# which, rather than meaning 'no type' or 'untyped', more correctly means 'can hold any type'. The VariantA variant can hold values of any type but also keeps an internal flag on the type it currently holds. A Variant data type is self-describing data – it contains the actual value of the data and metadata. An example in VB6We can use the GetType method to retrieve the internal representation of the variable: Dim MyVar As Variant MyVar = "my string" In this case MyVar.GetType.ToString would be tagged as System.String MyVar = #10/02/2009# Here it holds an internal flag that shows that the contained type is a System.DateTime In fact you can identify the internal representation of a Variant using the VarType or TypeName functions. These functions return the internal type kept by the Variant: TypeName returns it as a string and VarType returns it as an integer. Perl scalar value internalsPerl shares the same notion; it uses the scalar type which can hold any value and tags it internally The scalar can contain an : integer ("IV") Using the Devel::Peek 'Dump' module you can find out what type the scalar holds: use Devel::Peek 'Dump'; SV = IV(0x182a918) at 0x182a91c $b = "aa"; SV = PV(0x2379b4) at 0x182a9bc Variants and COM automationIn Visual Basic 6 there are 11 different data types, amongst them Currency, Date, Integer, Object, String, and Variant. As noted before the Variant can hold any of those types but also the IDispatch interface type. IDispatch and the Variants are the building blocks of MS windows Automation (OLE,Active X,COM) and the IDispatch interface uses the Variant to marshal the arguments from the client to the COM server. Variant implementation and discriminated unionsA variant type is in essence a tagged union. A VB Variant acts like a C style union. It can hold many types but its size is the size of its biggest member, and since it can hold any type it also is not type safe; this means that on the other end when trying to get at the contained value and/or convert it, a wrong representation might be used as you don't know the exact type stored. The problem is augmented with weakly type languages where conversion from type to type is happening implicitly. For example the client passes a string as parameter but at the server side the string is being converted to an int because the method expects an int; the same implicit conversion would happen when you pass a float and the method expects an int so the value is converted and truncated. So to denote the type contained in the union, the discriminated union was introduced which is capable for holding next to the actual value an internal flag denoting the type. So the value is no longer generic, but it does have an attribute which shows what type it is. In C then you would check when extracting by using a bif if..then clause.
An example in VB6Dim var1 as Variant: The same variable takes multiple forms where the next form overwrites the previous one. So this way you get no compile time type safety but you get runtime type safety. <ASIN:1430225491> <ASIN:143022455X> <ASIN:0596800959>
|
|||||||
Last Updated ( Friday, 09 November 2012 ) |