March 13th, 2009 05:28 PM
You see guys; Scott Meyers is saying do it as the built-in types did it. I don't understand why?!
Cuz if I coded something like this:
test& operator=( const test& src )
Then this statement is...
March 12th, 2009 07:13 PM
Hi :)
I am thinking about the assignment operator...
Basically if I want to overload it I code something like this :
class test{
public:
const test& operator=( const test& src ) { return...
December 21st, 2008 04:30 PM
Hi,
As a student this is not really what we usually care about. Could you please give us an example of what a performance specification might look like? In what unit the performance is measured?
...
December 17th, 2008 10:40 AM
Thank you, your posts are very helpful. It is clear now.
December 17th, 2008 10:22 AM
Ok, I have a clear idea how the input operation could be done. What about the output?
Is it a good idea to represent screen in the following way:
If we assume that the screen of our machine is...
December 17th, 2008 09:24 AM
I am not interested in an emulation of a real processor. What I am trying to design is a hypothetical machine like the Java virtual machine. I am not trying to do something big like JVM. My purpose...
December 17th, 2008 08:16 AM
First, it is my pleasure to be a new member of this community
Second, I am reading these days about virtual machines, and their architectures. I decided to write my own very simple easy to...