spacer
Yehuda Shiran June 11, 2002
Extending Abstract Classes
Tips: June 2002

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

The following example demonstrates the use of abstract classes. The polygon class is a generic class for all types of polygons. We define it as an abstract class because we want the implementation to be provided by the rectangle and square classes that extend the polygon class:

  abstract class polygon {
    abstract function printCharacteristic();
  }

  class rectangle extends polygon {
    function printCharacteristic() {
      print("All my angles are 90 degrees and my opposite sides are equal");
    }
  }
  class square extends polygon {
    function printCharacteristic() {
      print("All my angles are 90 degrees and all my sides are equal");
    }
  }
Let's define now two variables, shape1 and shape2, of type polygon, and instantiate them with the new operator:

  var shape1 : polygon = new rectangle;
  var shape2 : polygon = new square;
Let's print now their respective characteristics:

  shape1.printCharacteristics();
  shape2.printCharacteristics();
You should get the following statements:

  All my angles are 90 degrees and my opposite sides are equal
  All my angles are 90 degrees and all my sides are equal
To learn more about JScript .NET, go to Column 110, JScript .NET, Part IV: Inheritance.


People who read this tip also read these tips:

Look for similar tips by subject:

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint