Сегодня 30 ноября, суббота ГлавнаяНовостиО проектеЛичный кабинетПомощьКонтакты Сделать стартовойКарта сайтаНаписать администрации
Поиск по сайту
 
Ваше мнение
Какой рейтинг вас больше интересует?
 
 
 
 
 
Проголосовало: 7276
Кнопка
BlogRider.ru - Каталог блогов Рунета
получить код
Yarixxx
Yarixxx
Голосов: 1
Адрес блога: http://y3x.ru
Добавлен: 2010-12-17 00:20:50 блограйдером yarix
 

Java ListIterator

2015-06-17 17:43:24 (читать в оригинале)

There is one nice extension for Java Iterator which allows to go back and forward and even obtain current position. Suppose we have a list and obtained ListIterator: List<String> myList = new ArrayList<String>(); myList.add("str1"); myList.add("str2"); myList.add("str3"); ListIterator<String> listIterator = myList.listIterator(); The idea of iterator is staying between elements of list. hasPrevious & hasNext There are […]

Java Iterator

2015-06-17 16:47:46 (читать в оригинале)

There is a nice interface for going over Java Collections, its name Iterator. It allows to remove elements during going over them. The methods are the following: hasNext, next and remove. Suppose we have the following collection: List myList = new ArrayList(); myList.add("str3"); Iterator iterator = myList.iterator(); hasNext This method shows if there are some […]

NullPointerException on a List

2015-06-17 14:44:17 (читать в оригинале)

As I’ve found there is no standard implementation of List interface which throws NullPointerException on add operation. It is possible to wrap any implementation and throw NullPointerException in such a cases. Here is such example of List which does not allow to store null values. Proudly speaking there are ways to add null values there, […]

UnsupportedOperationException on a List

2015-06-17 13:50:01 (читать в оригинале)

There are multiple cases when UnsupportedOperationException can happen. Usually it happens when List implementation haven’t realized this method. For example, if we will try to use the following specialList String[] specialArray = {"str1"}; List specialList = Arrays.asList(specialArray); to add new element: specialList.add("str2"); it will throw exception with the following stacktrace: Exception in thread "main" java.lang.UnsupportedOperationException […]

Deque implementations

2015-06-16 16:52:58 (читать в оригинале)

There are several implementations of Deque interface. ArrayDeque It is resizable implementation, this means that after creating it is possible to add as many elements as needed. It is not possible to use null values. It is possible to provided the most probable size at a construction time. Deque d = new ArrayDeque(5); LinkedBlockingDeque It […]


Страницы: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 

 


Самый-самый блог
Блогер ЖЖ все стерпит
ЖЖ все стерпит
по количеству голосов (152) в категории «Истории»
Изменения рейтинга
Категория «Журналисты»
Взлеты Топ 5


Загрузка...Загрузка...
BlogRider.ru не имеет отношения к публикуемым в записях блогов материалам. Все записи
взяты из открытых общедоступных источников и являются собственностью их авторов.