Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « threading » Python 3.11.3

Classe « Thread »

Informations générales

Héritage

builtins.object
    Thread

Définition

class Thread(builtins.object):

help(Thread)

A class that represents a thread of control.

    This class can be safely subclassed in a limited fashion. There are two ways
    to specify the activity: by passing a callable object to the constructor, or
    by overriding the run() method in a subclass.

    

Constructeur(s)

Signature du constructeur Description
__init__(self, group=None, target=None, name=None, args=(), kwargs=None, *, daemon=None) This constructor should always be called with keyword arguments. Arguments are: [extrait de __init__.__doc__]

Liste des propriétés

Nom de la propriétéDescription
daemonA boolean value indicating whether this thread is a daemon thread. [extrait de __doc__]
identThread identifier of this thread or None if it has not been started. [extrait de __doc__]
nameA string used for identification purposes only. [extrait de __doc__]
native_idNative integral thread ID of this thread, or None if it has not been started. [extrait de __doc__]

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__repr__(self)
getName(self) Return a string used for identification purposes only. [extrait de getName.__doc__]
is_alive(self) Return whether the thread is alive. [extrait de is_alive.__doc__]
isDaemon(self) Return whether this thread is a daemon. [extrait de isDaemon.__doc__]
join(self, timeout=None) Wait until the thread terminates. [extrait de join.__doc__]
run(self) Method representing the thread's activity. [extrait de run.__doc__]
setDaemon(self, daemonic) Set whether this thread is a daemon. [extrait de setDaemon.__doc__]
setName(self, name) Set the name string for this thread. [extrait de setName.__doc__]
start(self) Start the thread's activity. [extrait de start.__doc__]

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__