View Single Post
Old 12-10-2012, 11:01 PM   PM User | #1
Taro
Regular Coder

 
Taro's Avatar
 
Join Date: Oct 2011
Location: Geraldton, Ontario
Posts: 155
Thanks: 1
Thanked 1 Time in 1 Post
Taro is an unknown quantity at this point
Abstract Classes

It's confusing how method classes can be instantiated, trying to figure out where they should be placed within the main method file. To understand abstract classes is one thing, but to extend on them is something that can be very tricky to work with. For example:
Code:
public abstract class theem
   {
       public abstract class Power
      {
      
         private Hiker jim;
          public Digit(int vb, int yt)
         {
            jim = new Hiker(vb, yt);
         }
      }
In relation, a non-abstract class must be used in order for an action to be run, for the reason being that the parent is abstract and its children are concrete subclasses?
__________________
Element ID

Webs Support Helper

Your friendly neighborhood Taroman.
Taro is offline   Reply With Quote