Movatterモバイル変換


[0]ホーム

URL:


We bake cookies in your browser for a better experience. Using this site means that you consent.Read More

Menu

Qt Documentation

  • Qt 4.8
  • Qt3SupportLight
  • Q3PtrCollection

Q3PtrCollection Class

TheQ3PtrCollection class is the base class of most pointer-based Qt collections.More...

Note: All functions in this class arereentrant.

Public Types

typedefItem

Public Functions

boolautoDelete() const
virtual voidclear() = 0
virtual uintcount() const = 0
voidsetAutoDelete(bool enable)

Protected Functions

Q3PtrCollection()
Q3PtrCollection(const Q3PtrCollection & source)
virtual~Q3PtrCollection()
virtual voiddeleteItem(Item d) = 0
virtual ItemnewItem(Item d)

Detailed Description

TheQ3PtrCollection class is the base class of most pointer-based Qt collections.

TheQ3PtrCollection class is an abstract base class for the Qt collection classes QDict,Q3PtrList, etc.

AQ3PtrCollection only knows about the number of objects in the collection and the deletion strategy (seesetAutoDelete()).

A collection is implemented using theItem (generic collection item) type, which is avoid*. The template classes that create the real collections cast theItem to the required type.

Member Type Documentation

typedef Q3PtrCollection::Item

This type is the generic "item" in aQ3PtrCollection.

Member Function Documentation

[protected]Q3PtrCollection::Q3PtrCollection()

Constructs a collection. The constructor is protected becauseQ3PtrCollection is an abstract class.

[protected]Q3PtrCollection::Q3PtrCollection(constQ3PtrCollection & source)

Constructs a copy ofsource withautoDelete() set to false. The constructor is protected becauseQ3PtrCollection is an abstract class.

Note that ifsource hasautoDelete turned on, copying it will risk memory leaks, reading freed memory, or both.

[virtual protected]Q3PtrCollection::~Q3PtrCollection()

Destroys the collection. The destructor is protected becauseQ3PtrCollection is an abstract class.

bool Q3PtrCollection::autoDelete() const

Returns the setting of the auto-delete option. The default is false.

See alsosetAutoDelete().

[pure virtual]void Q3PtrCollection::clear()

Removes all objects from the collection. The objects will be deleted if auto-delete has been enabled.

See alsosetAutoDelete().

[pure virtual]uint Q3PtrCollection::count() const

Returns the number of objects in the collection.

[pure virtual protected]void Q3PtrCollection::deleteItem(Item d)

Reimplement this function if you want to be able to delete items.

Deletes an item that is about to be removed from the collection.

This function has to reimplemented in the collection template classes, and shouldonly delete itemd if auto-delete has been enabled.

Warning: If you reimplement this function you must also reimplement the destructor and call the virtual functionclear() from your destructor. This is due to the way virtual functions and destructors work in C++: Virtual functions in derived classes cannot be called from a destructor. If you do not do this, your deleteItem() function will not be called when the container is destroyed.

See alsonewItem() andsetAutoDelete().

[virtual protected]Item Q3PtrCollection::newItem(Item d)

Virtual function that creates a copy of an object that is about to be inserted into the collection.

The default implementation returns thed pointer, i.e. no copy is made.

This function is seldom reimplemented in the collection template classes. It is not common practice to make a copy of something that is being inserted.

See alsodeleteItem().

void Q3PtrCollection::setAutoDelete(bool enable)

Sets the collection to auto-delete its contents ifenable is true and to never delete them ifenable is false.

If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items.

The default setting is false, for safety. If you turn it on, be careful about copying the collection - you might find yourself with two collections deleting the same items.

Note that the auto-delete setting may also affect other functions in subclasses. For example, a subclass that has a remove() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item.

See alsoautoDelete().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.


[8]ページ先頭

©2009-2025 Movatter.jp