The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on.

I'm interested in getting to know how does the C++ memory model relate to the older, well known java memory model (1.5). Is it the same? Is it similar? Do they have any significant differences? If so, why?

The java memory model has been around since a long time and many people know it quite decently, so I guess it might be helpful, not only for me, to learn the C++ memory model, by comparing it with the java one.

link|improve this question
9  
No, c++11 introduces a platform independent memory model for concurrency. This is a major breakthrough for multi-threaded programming in c++. – ciamej Sep 9 '11 at 14:58
8  
Why is this not constructive? I think that pointing similarities and differences is a very objective thing. Answers will certainly involve facts (C++11 does not do X while Java does), references (See C++11 standard section Y), or specific expertise. – R. Martinho Fernandes Sep 9 '11 at 15:04
2  
The languages are too different for them to be compared in this way. One can compare the C++ memory model with Java's equivalent in a lot of respects. Pick one (dynamic allocation, concurrency) and discuss the implications, but the question as stated is too vague. Voting to close. – Alexandre C. Sep 9 '11 at 18:15
1  
2  
@AlexandreC. "The languages are too different for them to be compared in this way." Nonsense. – curiousguy Oct 26 '11 at 5:38
show 4 more comments
feedback

closed as not constructive by bmargulies, roadRunner, BЈовић, Alexandre C., Nicol Bolas Sep 9 '11 at 21:29

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

The Java memory model was an important influence on the C++11 memory model, and was where we pulled the terms happens-before and synchronizes-with from. However, the C++11 memory model offers much more fine-grained control over memory ordering than the Java memory model.

Java volatile variables are equivalent to C++11 std::atomic<> variables, if you use std::memory_order_acquire memory ordering for reads, std::memory_order_release ordering for writes, and std::memory_order_acq_rel ordering for RMW operations.

There is no equivalent in Java to std::memory_order_relaxed, or std::memory_order_seq_cst.

link|improve this answer
+1. Nice answer. Since you've written a book on C++ Concurrency in Action, it would be nice (and I would particularly be happy) if you post an answer here in this topic : C++0x introduces a standardized memory model. What does it mean? And how is it going to affect C++ programming? – Nawaz Sep 10 '11 at 6:15
feedback

The C++11 standard introduces the "Memory Model" concept as a way to make the coder not to worry about the layout of objects in memory in regards of stuff as threading, locking, etc. The difference between C++ and Java in this regard is that in C++ you use pointers and you have some control of the objects layout in memory, and in Java you have little to no control over that. Look in Memory Model section at Bjarne Stroustrup FAQ about C++11

link|improve this answer
feedback

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