Heim >Backend-Entwicklung >C++ >Warum scheint „std::thread' den Kopierkonstruktor aufzurufen, wenn eine Referenz übergeben wird?

Warum scheint „std::thread' den Kopierkonstruktor aufzurufen, wenn eine Referenz übergeben wird?

Barbara Streisand
Barbara StreisandOriginal
2024-11-15 10:08:021031Durchsuche

Why Does `std::thread` Appear to Call the Copy Constructor When Passing by Reference?

std::thread Passes by Value: Copy Constructor Called

Problem:
When passing arguments to a thread using std::thread, passing by reference appears to be calling the copy constructor. This is observed in a case where the passed class has a disabled copy constructor.

Explanation:
By default, std::thread takes its arguments by value. Despite the appearance of a reference in the function signature, the argument is actually copied into the thread object. In the given example, the Log class has its copy constructor disabled, hence the compiler error when passing it by reference.

Solution: Reference Semantics with std::reference_wrapper:
To achieve reference semantics, use std::reference_wrapper to wrap the object and pass it to the thread. This effectively passes a reference to the original object without creating a copy:

std::thread newThread(session, &sock, std::ref(logger));

Thread Function Declarations:
To use std::ref, the corresponding thread function must be modified to accept a std::reference_wrapper:

static void session(tcp::socket *sock, std::reference_wrapper<Log> logger)
{
    std::cout << " session () " << std::endl;
}

Lifetime Management:
It's important to ensure that the passed object (in this case, logger) outlives the thread to avoid dangling references.

Das obige ist der detaillierte Inhalt vonWarum scheint „std::thread' den Kopierkonstruktor aufzurufen, wenn eine Referenz übergeben wird?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn