getStorageSize() 공개 추상적인 메소드

public abstract getStorageSize ( ) : int
리턴 int
예제 #1
0
 /**
  * Gets the size of the provided area code map storage. The map storage passed-in will be filled
  * as a result.
  */
 private static int getSizeOfAreaCodeMapStorage(AreaCodeMapStorageStrategy mapStorage,
     SortedDictionary<int, String> areaCodeMap)
 {
     mapStorage.readFromSortedMap(areaCodeMap);
     return mapStorage.getStorageSize();
 }
예제 #2
0
 /**
  * Gets the size of the provided area code map storage. The map storage passed-in will be filled
  * as a result.
  */
 private static int getSizeOfAreaCodeMapStorage(AreaCodeMapStorageStrategy mapStorage,
                                                SortedDictionary <int, String> areaCodeMap)
 {
     mapStorage.readFromSortedMap(areaCodeMap);
     return(mapStorage.getStorageSize());
 }