<<< Inheritance in UML     Index     Encapsulation of Relationships >>>

25. Inheritance in Java and C++ Compared

  • 
    // Java
    public class Button extends Component
    {
        //...
    
    }//class Button
    
    
  • 
    // C++
    class Button : public Component
    {
        //...
    
    }//class Button
    
    

<<< Inheritance in UML     Index     Encapsulation of Relationships >>>