<<< Relationships and Multiplicity     Index     Aggregation vs. Composition >>>

16. Association in Java and C++ compared

  • 
    // Java
    public class Controller
    {
    
        private Interface myInterface;
    
    }//class Controller
    
    
  • 
    // C++
    class Controller
    {
    private:
        Interface* myInterface;
    
    };//class Controller
    
    

<<< Relationships and Multiplicity     Index     Aggregation vs. Composition >>>