What does the term “blocking” mean in programming?

2019-01-10 19:43发布

Could someone provide a layman definition and use case?

2条回答
狗以群分
2楼-- · 2019-01-10 19:55

"Blocking" means that the caller waits until the callee finishes its processing. For instance, a "blocking read" from a socket waits until there is data to return; a "non-blocking" read does not, it just returns an indication (usually a count) of whether there was something read.

You hear the term mostly around APIs that access resources that don't necessarily require CPU attention -- I/O, for instance. You also hear it in multi-threading: A call from Thread A to Thread B might be designed to "block" (hold up Thread A) until Thread B achieves the relevant state to process or at least accept the request. (The most obvious example there being "join", which usually means "I, Thread A, want to wait until Thread B has terminated" -- you use that when exiting a multi-threaded program.)

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-01-10 20:00

In simple words: If you call a function that stops the program from continuing to run until the user has performed some action (or some other action that your program is not controlling), this call is called a blocking call.

查看更多
登录 后发表回答