An Intent is a messaging object which provides a facility for performing late runtime binding between the code in different applications in the Android development environment. Its most significant use is in the launching of activities,
An Intent is basically a passive data structure holding an abstract description of an action to be performed.
A passive data structure (opposite of active data structure, or functional data structure) is one that is managed exclusively by external threads. That is to say, it does not have some associated thread which performs operations on it.
Basically, it's like a container of information; you create it, set all its information, and it just exists to be accessed by other processes (in Android, Activity objects, usually). Hence, it is not actively being access (so it's not "active"), and it is not being operated on (not "functional"), so it should be considered passive.
An Intent is basically a passive data structure holding an abstract description of an action to be performed.
A passive data structure (opposite of active data structure, or functional data structure) is one that is managed exclusively by external threads. That is to say, it does not have some associated thread which performs operations on it.
Basically, it's like a container of information; you create it, set all its information, and it just exists to be accessed by other processes (in Android, Activity objects, usually). Hence, it is not actively being access (so it's not "active"), and it is not being operated on (not "functional"), so it should be considered passive.
No comments:
Post a Comment