English 中文(简体)
C# 5 async/await threadchancs 感到错吗?
原标题:C# 5 async/await thread mechanics feel wrong?

为什么在内部等待之前,电话线穿透了合成方法?

一旦采用“合成方法”,就更清洁了起来。 这样,你就知道,“yn”方法立即返回。 你们不必担心在“合成”方法的早期阶段不做任何昂贵的事情。

我往往想知道,一种方法是否在我的read子上执行法典。 这是否阻碍。 这一模式似乎打开了各种各样的内部可能性。

我确信,有很好的理由,我只想接手。

最佳回答

一旦采用“合成方法”,就更清洁了起来。

“async”方法的全点是 避免<> /em>产生新的线索。

你们不赞成。 同步方法不必在另一条路面上运行,以达到同步。 同步方法的意思是,它们允许你将工作分解成不需要在某个特定时间内运行的微粒(<>>>>,但不一定是,而不必就同一线<>开展其他工作。

想像你可以雇用的工人。 考虑采用“合成方法”作为清单,在项目之间暂停使用。 如果您的要人名单说“到仓库,购买牛奶和鸡蛋,回家,做ome子”,那么,当有人在“鸡蛋”和“家庭”两步之间打电话时,你可以打电话,安排工作,直到你做lette为止。 有了非同化方法,你的电话一直环绕,直到奥古特为止,然后你打电话。 在你重新做你重新做的事情之前,《倡议》就座。

你的理念是,为了让国际律师联合会随时作出反应,你获得一份名单的时候,你会雇用一些gu,前往你们的商店,以便你能够自由地听到关于药剂的号召。 <>strong>That是昂贵和不必要的。 由于长期工作任务已建在协调小组中断和安排更多工作的各点,因此,所有工作都可以留在同一线<>。

问题回答

我想到async.await,成为continuation-passing作方食糖>。

考虑到这一点,它没有任何东西可以做。

我往往想知道,一种方法是否在我的read子上执行法典。

我认为,这是一个特殊的愿望,实际上不是任何特征的好理由。

The main point of async/await is that the code for starting an async op and handling the results can be kept into one method.

否则,你就被迫打破逻辑上属于两部分的法典。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...