What type are parameters without type like in the class TStringStream:
function Read(var Buffer; Count: Longint): Longint; override;
What is the type of Buffer parameter (is it a type of Pointer ?).
|
What type are parameters without type like in the class TStringStream:
What is the type of Buffer parameter (is it a type of Pointer ?). | ||||
|
feedback
|
|
I wrote an article about this very topic a few years ago: Untyped parameters are used in a few situations; the
In the case of Read the rest of my article for more situations where Delphi uses untyped parameters. | |||||
feedback
|
|
or untyped as in your example. | ||||
|
feedback
|
|
Check out the Delphi help for "Untyped parameters" You can pass in any type, but you have to cast it in the implementation. Help says that you cannot pass it a numeral or untyped numeric constant. So basically you have to be know what type to expect, and compiler can not help you, so you need a good reason to do it this way. I suppose it could be of use if you need the method to handle incompatible types, but then again you could write several overloaded versions for each expected type, I would suggest that as a better solution. | |||||||
feedback
|
|
Perhaps surprisingly, it is legal to pass a dereferenced pointer as an untyped parameter. And the pointer itself doesn't even have to have a type.
Of course it would probably have been easier if the parameter to SomeMethod() had been a pointer, but this might not be under your control. | |||
|
feedback
|