Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I believe C# has come up with some new concurrency based libraries, but how does it compare to Java?

Could you build something like Cassandra in C#?

share|improve this question
1  
Better! There's no checked InterruptedException all over. And you should be explicit about which new concurrency libraries you're talking about: the TPL (which is not new anymore)? Or the async/await stuff that is coming? – R. Martinho Fernandes Jun 18 '11 at 18:51
@martinho I'm not really sure which ones, looking for guidance. – Blankman Jun 18 '11 at 19:49
1  
That's why I downvoted. The downvote tooltip reads: "This question does not show any research effort; (...)". – R. Martinho Fernandes Jun 18 '11 at 19:53

closed as not constructive by dtb, GregS, Henk Holterman, leppie, Ken White Jun 18 '11 at 22:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

C# has more built-in support on both in low-level (e.g. memorybarier) and high-level (e.g. TPL) concurrency constructs compared to Java. So you can build everything in C# as you can in Java.

The only thing C# lacks compared to Java is proper documentation on the actual semantics of those constructs.

share|improve this answer
Are you sure about that? I think that Java has had both the low-level and the high-level constructs before C#. – R. Martinho Fernandes Jun 18 '11 at 19:52
Yes I'm sure. For instance Thread.MemoryBarrier has no equivalent in Java. Nor has Java explicit access to Monitor.Enter and Monitor.Exit as C# does (only implicit by the synchronized keyword). – M Platvoet Jun 18 '11 at 20:16
Ok, Java lacks MemoryBarrier. Regarding the second point, Java has the superior Lock and Condition objects. – R. Martinho Fernandes Jun 18 '11 at 20:20
C# Monitor.Enter/Exit/Wait/Pulse compares to Java's Object.wait/notify with java lacking an equivalent for enter/exit. So to answer the original question of the poster: C# has all the constructs java has and more. – M Platvoet Jun 18 '11 at 20:32
What's the C# equivalent of Java's Condition? Lock and Condition do all Monitor does and more. – R. Martinho Fernandes Jun 18 '11 at 20:37
show 4 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.