<< Chapter < Page Chapter >> Page >

A form of multiple inheritance

In ActionScript, a class can inherit from (extend) only one other class. However, a class can inherit from (implement) any number of interfaces. Furthermore, each interface can extend any number of otherinterfaces.

Therefore, an ActionScript class can inherit any number of concrete methods from one superclass and can inherit any number of abstract methods from any number of interfaces.

Concrete methods are required

Any class that inherits an abstract method must provide a concrete definition for the method or the class cannot be compiled.

ActionScript classes cannot be declared abstract. Therefore, the abstract method cannot be passed down the class hierarchy for definition by asubclass as is the case in Java. The concrete version must be defined in the class in which it is inherited. This means that it must be defined inthe class that implements the interface.

What is a concrete method?

As a minimum, a concrete method is a method signature followed by a pair of matching curly braces (possibly containing a return statement) . Normally the body of the method is coded between the curly braces defining thebehavior of the method.

If the return type is void, the matching curly braces may be empty. In that case, the concrete method exhibits no observable behavior. It returnsimmediately without doing anything when it is called.

If the return type is not void, there must be a return statement that returns a value of the correct type.

Do empty methods have any value?

It is not uncommon for a class to implement an interface for which some of the interface methods are of no interest with regard to an object of the newclass. However, the implementing class must provide concrete definitions for all of the methods inherited from the interface.

In that case, it is common practice to simply define the uninteresting methods as empty methods in the new class. If they ever do get called,they will simply return immediately without doing anything.

Preview

The program named Interface01 that I will explain in this lesson is an update of the program named Polymorph02 that I explained in the earlier lesson titled "Polymorphism - The Big Picture" (see Baldwin's ActionScript programming website ).

The earlier program illustrated runtime polymorphism based on class inheritance and the overriding of inherited concrete methods.

This program will illustrate runtime polymorphism based on interface inheritance and the concrete definition of inherited abstract methods.

The project file structure

The project file structure is shown in Figure 1.

Project file structure.

Missing image
Project file structure.

Six ActionScript files

This project consists of one MXML file named Interface01 , three class files, and three interface files. The class files are named:

  • MyRectangle.as
  • MyCircle.as
  • Driver.as

The interface files are named:

  • IVolume.as
  • ICircumference.as
  • IArea.as

Interface can declare any number of methods

An interface can declare any number of methods including setter and getter methods. As you will see later, the interface named IArea declares two methods named area and id .

Questions & Answers

what is defense mechanism
Chinaza Reply
what is defense mechanisms
Chinaza
I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with actionscript. OpenStax CNX. Jun 04, 2010 Download for free at http://cnx.org/content/col11202/1.19
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with actionscript' conversation and receive update notifications?

Ask