which are used to create other data types. These data types are very
similar to Java data types. Since ActionScript 3 was a complete rewrite
of ActionScript 2, the data types and their inheritances have changed.
- String - A list of characters such as "Your Name"
- Number - Any Numeric value
- int - The int data type is a 32-bit integer between -2,147,483,648
- uint - The uint (Unsigned Integer) data type is a 32-bit unsigned
- Boolean - A simple binary storage that can only be "true" or "false".
- Object - Object is the data type all complex data types inherit from.
and other objects.
- Null - The Null data type contains only one value, null. This is the
- void - The void data type contains only one value, undefined. In previous
- Date - A date object containing the date/time digital representation.
- Error - A generic error object that allows runtime error reporting when
- Function - The core class for all Flash method definitions.
- RegExp - A regular expression object for strings.
And so on..
No comments:
Post a Comment