⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qmutex.3qt

📁 Trolltech公司发布的基于C++图形开发环境
💻 3QT
字号:
'\" t.TH QMutex 3qt "24 January 2005" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQMutex \- Access serialization between threads.br.PP\fC#include <qthread.h>\fR.PPInherits Qt..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQMutex\fR ( bool " "recursive" " = FALSE ) ".br.ti -1c.BI "virtual \fB~QMutex\fR () ".br.ti -1c.BI "void \fBlock\fR () ".br.ti -1c.BI "void \fBunlock\fR () ".br.ti -1c.BI "bool \fBlocked\fR () ".br.in -1c.SH DESCRIPTIONThe QMutex class provides access serialization between threads..PPThe purpose of a QMutex is to protect an object, data structure or section of code so that only one thread can access it at a time (In Java terms, this is similar to the synchronized keyword). For example, say there is a method which prints a message to the user on two lines:.PP.nf.br  void someMethod().br  {.br     qDebug("Hello");.br     qDebug("World");.br  }.fi.PPIf this method is called simultaneously from two threads then the following sequence could result:.PP.nf.br  Hello.br  Hello.br  World.br  World.fi.PPIf we add a mutex:.PP.nf.br  QMutex mutex;.br.br  void someMethod().br  {.br     mutex.lock();.br     qDebug("Hello");.br     qDebug("World");.br     mutex.unlock();.br  }.fi.PPIn Java terms this would be:.PP.nf.br  void someMethod().br  {.br     synchronized {.br       qDebug("Hello");.br       qDebug("World");.br     }.br  }.fi.PPThen only one thread can execute someMethod at a time and the order of messages is always correct. This is a trivial example, of course, but applies to any other case where things need to happen in a particular sequence..SH MEMBER FUNCTION DOCUMENTATION.SH "QMutex::QMutex ( bool recursive = FALSE )"Constructs a new mutex. The mutex is created in an unlocked state. A recursive mutex is created if \fIrecursive\fR is TRUE; a normal mutex is created if \fIrecursive\fR is FALSE (default argument). With a recursive mutex, a thread can lock the same mutex multiple times and it will not be unlocked until a corresponding number of unlock() calls have been made..SH "QMutex::~QMutex () \fC[virtual]\fR"Destroys the mutex..SH "void QMutex::lock ()"Attempt to lock the mutex. If another thread has locked the mutex then this call will block until that thread has unlocked it..PPSee also unlock()..SH "bool QMutex::locked ()"Returns TRUE if the mutex is locked by another thread and FALSE if not..PP\fINOTE:\fR Due to differing implementations of recursive mutexes on various platforms, calling this function from the same thread that previous locked the mutex will return undefined results..SH "void QMutex::unlock ()"Unlocks the mutex. Attempting to unlock a mutex in a different thread to the one that locked it results in an error. Unlocking a mutex that is not locked results in undefined behaviour (varies between different Operating Systems' thread implementations)..PPSee also  lock()..SH "SEE ALSO".BR http://doc.trolltech.com/qmutex.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports make our job much simpler. Thank you..PIn case of content or formattting problems with this manual page, pleasereport them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qmutex.3qt) and the Qtversion (2.3.10).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -