Changes between Version 2 and Version 3 of AbstractClass

Show
Ignore:
Author:
edrishn (IP: 207.7.108.244)
Timestamp:
01/11/07 18:19:05 (4 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AbstractClass

    v2 v3  
    1 [[PageOutline]] 
    2 In java, abstract classes that extend another abstract class or implement interfaces, can leave their parent methods unimplemented, without declaring these methods. But in .Net, those abstract classes which don't want to implement their parent abstract class or interface methods, must declare each not implemented parent method as an abstract method. 
     1In Java, abstract classes can leave their parent methods unimplemented. But in .Net, those abstract classes, must declare each unimplemented method as an ''abstract'' method. 
    32 
    43[Java]