How do I tell what type of value is in a Perl variable?
$x might be a scalar, a ref to an array or a ref to a hash (or maybe other things).
|
How do I tell what type of value is in a Perl variable?
|
||||
|
|
|
|
|||||||||||||||
|
|
A reference is just a particular type of scalar.
The built-in function
...produces the output:
For more information about the other types of references (e.g. coderef, arrayref etc), see this question: http://stackoverflow.com/questions/1399833/how-can-i-get-perls-ref-function-to-return-ref-io-and-lvalue and perldoc perlref. Note: You should not use |
|||||||||||||
|
|
A scalar always holds a single element. Whatever is in a scalar variable is always a scalar. A reference is a scalar value. If you want to know if it is a reference, you can use ref. If you want to know the reference type,
you can use the If you want to know if it is an object, you can use the If you want to know if that scalar is actually just acting like a scalar but tied to a class, try tied. If you get an object, continue your checks. If you want to know if it looks like a number, you can use If you need to do something more fancy, you can use a module such as Params::Validate. |
||||
|
|
|
I like polymorphism instead of manually checking for something:
This is much more powerful than manual checking, as you can reuse your "checks" like you would any other type constraint. That means when you want to handle arrays, hashes, and even numbers less than 42, you just write a constraint for "even numbers less than 42" and add a new multimethod for that case. The "calling code" is not affected. Your type library:
Then make Foo support this (in that class definition):
Then Maintainable. |
|||
|
|
|
At some point I read a reasonably convincing argument on Perlmonks that testing the type of a scalar with The point was that in Perl there are many mechanisms that make it possible to make a given scalar act like just about anything you want. If you So, the argument went, it is better to use duck typing to find out what a variable is. Instead of:
You should do something like this:
For the most part I don't actually do this, but in some cases I have. I'm still making my mind up as to when this approach is appropriate. I thought I'd throw the concept out for further discussion. I'd love to see comments. Update I realized I should put forward my thoughts on this approach. This method has the advantage of handling anything you throw at it. It has the disadvantage of being cumbersome, and somewhat strange. Stumbling upon this in some code would make me issue a big fat 'WTF'. I like the idea of testing whether a scalar acts like a hash-ref, rather that whether it is a hash ref. I don't like this implementation. |
|||||||||||||||||||||
|
|
wow - lot of stuff comes back from the interwebs. I had a specific thing in mind. I wrote a module that reads data off a network and stores each 'record' as a hash of key->value in an array of hashes. Sometimes the the value is an array, sometimes a single value. The multi value case is rare so I wanted to allow the user of the module to just go $rec->{foo}, but if they do need a way to tell if it is multi valued Also when a caller passes me a 'record' to write I need to see if the value is multi-valued or not Maybe I should just make all values always an array - with a single value 99% of the time. |
|||
|
|