Array UML Diagram

To Examples

Abbreviated UML Diagram for Array Class

 

S = static member
type = type of array elements

Array

+ Length : int
+ Rank : int

+ type[int]  
+ S BinarySearch(type[ ], type) : void  
+ S Clear(type[ ], int, int) : void  
+ CompareTo(int) : bool  
+ ElementOf(int) : type  
+ GetLength(int) : int  
+ GetLowerBound(int) : int  
+ GetUpperBound(int) : int  
+ GetValue(int) : type  
+ S Reverse(type[ ]) : void  
+ S Reverse(type[ ], int, int) : void  
+ S Sort(type[ ]) : void  
+ SetValue(type, int) : type  
+ ToString( ) : string  
+ ToString(string) : string