std::thread::hardware_concurrency
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody> static unsigned hardware_concurrency(); |
(dal C++11) | |
Restituisce il numero di thread simultanei supportati dall'implementazione. Il valore deve essere considerato solo un suggerimento.
Original:
Returns number of concurrent threads supported by the implementation. The value should be considered only a hint.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Valore di ritorno
numero di thread simultanei supportati. Se il valore non è ben definita o non computabili, ritorna
0.Original:
number of concurrent threads supported. If the value is not well defined or not computable, returns
0.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Eccezioni
Esempio
| This section is incomplete Reason: no example |