Добрый день! Помогите разобраться в одном моменте.у QPtrList ест метод take(). В описании метода написано: Takes the current item out of the list without deleting it.Какой item является current у метода take() без параметров?Судя по дальнейшему описанию: The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to 0 if the list becomes empty.Правильно ли я понял, что это - последний элемент?Вместо QPtrList я использую QList. Каким методом QList заменить QPtrList::take()? QList::takeLast ()?
|