I noticed that i can set a return type on a function to 'Void' aswell as 'void' and just wondered if there was and benefit of either?
|
AS3 docs (void): Specifies that a function cannot return any value. The void type is a special type that contains exactly one value: undefined. It is special in that its use is limited to the return type of a function. You cannot use void as a type annotation for a property. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/specialTypes.html#void AS2 docs (Void): The Void data type has one value, void, and is used in a function definition to indicate that the function does not return a value, as shown in the following example:
http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000037.html |
|||||
|
|
No there isn't. void type just says the compiler that no value will be returned. |
|||
|
|
|
void type indicates to the compiler that the function you have written will not return any value, in the other side if you indicate other type int than void the compiler expect that you return int. Ex:
AS2 = :Void |
|||
|
|
