show/hide this revision's text 2 added 11 characters in body; edited title

How to understand asynchronous io in Windows?

1.How to understand asynchronous io?io in Windows??

2.If I write/read something to the file using asynchronous io :

WriteFile();
ReadFile();
WriteFile();

How many threads does the OS generate to accomplish these task?

Do the 3 task run simultaneously and in multi-threading way or run one after another just with different order?

3.Can I use multithreading and in each thread using a asynchronous io to read or write the same file?

show/hide this revision's text 1

How to understand asynchronous io?

1.How to understand asynchronous io??

2.If I write/read something to the file using asynchronous io :

WriteFile();
ReadFile();
WriteFile();

How many threads does the OS generate to accomplish these task?

Do the 3 task run simultaneously and in multi-threading way or run one after another just with different order?

3.Can I use multithreading and in each thread using a asynchronous io to read or write the same file?