考虑以下场景:
auto h = CreateFile(...);
ReadFileEx(h, ...); // Asynchronous read for a large block of data. say, 1GB.
CloseHandle(h);
// If the read has not yet finished here, what will happen? Big Bang???
考虑以下场景:
auto h = CreateFile(...);
ReadFileEx(h, ...); // Asynchronous read for a large block of data. say, 1GB.
CloseHandle(h);
// If the read has not yet finished here, what will happen? Big Bang???