Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QSharedDataPointer Class Reference
[QtCore module]

The QSharedDataPointer class provides a pointer to a shared data object. More...

#include <QSharedDataPointer>

Note: All the functions in this class are reentrant.

Public Functions


Detailed Description

The QSharedDataPointer class provides a pointer to a shared data object.

QSharedDataPointer<T> makes it easier to write your own implicitly shared classes. It handles reference counting behind the scenes in a thread-safe manner, ensuring that classes that use it can be reentrant.

Implicit sharing is used throughout Qt to combine the memory and speed efficiency of pointers with the ease of use of value types. See the Shared Classes page for more information.

Let's suppose that you want to make an Employee class implicitly shared. The procedure is:

  • Define the Employee class with a single data member variable of type QSharedDataPointer<EmployeeData>.
  • Define an EmployeeData class that derives from QSharedData and that contains all the variables that you would normally put in Employee.

To show how this works in practice, we will review the entire source code for an implicitly shared Employee class. Here's the header file that defines the Employee class:

    #ifndef EMPLOYEE_H
    #define EMPLOYEE_H

    #include <QSharedData>
    #include <QString>

    class EmployeeData : public QSharedData
    {
    public:
        int id;
        QString name;
    };

    class Employee
    {
    public:
        Employee();
        Employee(int id, const QString &name);

        void setId(int id) { d->id = id; }
        void setName(const QString &name) { d->name = name; }

        int id() const { return d->id; }
        QString name() const { return d->name; }

    private:
        QSharedDataPointer<EmployeeData> d;
    };

    #endif

All accesses to the data in the setter and getter functions are made through the QSharedDataPointer object d. For non-const functions, operator->() automatically calls detach(), ensuring that modifications to one Employee object don't affect other Employee objects.

In this example, the EmployeeData type is a simple class with a default constructor and a copy constructor provided by C++. If member-per-member copy isn't sufficient for your own data type, you must implement your own copy constructor.

Let's now see how to implement the Employee constructors:

    Employee::Employee()
    {
        d = new EmployeeData;
        d->id = 0;
    }

In the default constructor, we create an object of type EmployeeData and assign it to the d pointer using operator=().

    Employee::Employee(int id, const QString &name)
    {
        d = new EmployeeData;
        d->id = id;
        d->name = name;
    }

In the constructor that takes an ID and an employee's name, we also create an object of type EmployeeData and assign it to the d pointer.

In this example, we don't need to provide a copy constructor, an assignment operator, or a destructor for Employee. The default implementations provided by C++, which invoke QSharedDataPointer's copy constructor, assignment operator, or destructor, are sufficient. And this is true in general, i.e. for any QSharedData subclass which only stores values (or implicitly shared classes), such as int, double, QString, QStringList, QList<QWidget*>, and so on.

Behind the scenes, QSharedDataPointer automatically increments or decrements the reference count of the shared data object pointed to by d, and deletes shared objects when the reference count reaches 0.

See also QSharedData.


Member Function Documentation

QSharedDataPointer::QSharedDataPointer ()

Constructs a QSharedDataPointer initialized with a null pointer.

QSharedDataPointer::QSharedDataPointer ( T * sharedData )

Constructs a QSharedDataPointer that points to sharedData.

This function automatically increments sharedData's reference count.

QSharedDataPointer::QSharedDataPointer ( const QSharedDataPointer<T> & other )

Constructs a copy of other.

This function automatically increments the reference count of the shared data object pointed to by other.

QSharedDataPointer::~QSharedDataPointer ()

Destroys the QSharedDataPointer.

This function automatically decrements the reference count of the shared object and deletes the object if the reference count reaches 0.

const T * QSharedDataPointer::constData () const

Returns a const pointer to the shared object.

This function does not call detach().

See also data().

T * QSharedDataPointer::data ()

Returns a pointer to the shared object.

This function does a detach().

See also constData().

const T * QSharedDataPointer::data () const

This is an overloaded member function, provided for convenience.

This function does not call detach().

void QSharedDataPointer::detach ()

If the shared data's reference count is greater than 1, creates a deep copy of the shared data.

This function is automatically called by QSharedDataPointer when necessary. You should never need to call it yourself.

QSharedDataPointer::operator T * ()

Returns a pointer to the shared object.

This function does a detach().

See also data() and constData().

QSharedDataPointer::operator const T * () const

Returns a pointer to the shared object.

This function does not call detach().

bool QSharedDataPointer::operator! () const

Returns true if this pointer is null; otherwise returns false.

bool QSharedDataPointer::operator!= ( const QSharedDataPointer<T> & other ) const

Returns a true if the pointer to the shared object in other is not equal to to the pointer to the shared data in this else returns false.

This function does not call detach().

T & QSharedDataPointer::operator* ()

Provides access to the shared object's members.

This function does a detach().

const T & QSharedDataPointer::operator* () const

This is an overloaded member function, provided for convenience.

This function does not call detach().

T * QSharedDataPointer::operator-> ()

Provides access to the shared object's members.

This function does a detach().

const T * QSharedDataPointer::operator-> () const

This is an overloaded member function, provided for convenience.

This function does not call detach().

QSharedDataPointer<T> & QSharedDataPointer::operator= ( const QSharedDataPointer<T> & other )

Assigns other to this pointer.

This function automatically increments the reference count of the shared data object pointed to by other, and decrements the reference count of the object previously pointed to by this QSharedDataPointer. If the reference count reaches 0, the shared data object is deleted.

QSharedDataPointer & QSharedDataPointer::operator= ( T * sharedData )

This is an overloaded member function, provided for convenience.

Sets this QSharedDataPointer to point to sharedData.

This function automatically increments sharedData's reference count, and decrements the reference count of the object previously pointed to by this QSharedDataPointer. If the reference count reaches 0, the shared data object is deleted.

bool QSharedDataPointer::operator== ( const QSharedDataPointer<T> & other ) const

Returns a true if the pointer to the shared object in other is equal to to the pointer to the shared data in this else returns false.

This function does not call detach().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 85
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 19
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.1
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web