First of all, no matter how monstrous the class from earlier may seem in comparison to the previously introduced struct, the compiler will translate it into the following code (we slightly modified it for the sake of simplicity):
Basically, the compiler generates the same code that we introduced earlier as a way to mimic class behavior using a simple struct. Though compilers vary in techniques and methods of implementing the C++ object model, the preceding example is one of the popular approaches practiced by compiler developers. It balances the space and time efficiency in accessing object members (including member functions).
Next, we should consider that the compiler edits our code by augmenting and modifying it. The following code declares the global create_apple() function, which creates and returns a Product object with values specific to an apple. It also declares a book object in the main() function:
int main() { Product red_apple = create_apple(); Product book; Product* ptr = &book; ptr->set_name("Alice in Wonderland"); ptr->set_price(6.80); std::cout << "I'm reading " << book.name() << " and I bought an apple for " << red_apple.price() << std::endl; }
We already know that the compiler modifies the class to translate it into a struct and moves member functions to the global scope, each of which takes the reference (or a pointer) to the class as its first parameter. To support those modifications in the client code, it should also modify all access to the objects.
A line or lines of code that declare or use already declared class objects are referred to as client code.
Here's how we will assume the compiler modifies the preceding code (we used the word assume because we're trying to introduce a compiler-abstract rather than a compiler-specific approach):
int main() { Product red_apple; Product_constructor(red_apple); create_apple(red_apple); Product book; Product* ptr; Product_constructor(book); Product_set_name(*ptr, "Alice in Wonderland"); Product_set_price(*ptr, 6.80); std::ostream os = operator<<(std::cout, "I'm reading "); os = operator<<(os, Product_name(book)); os = operator<<(os, " and I bought an apple for "); os = operator<<(os, Product_price(red_apple)); operator<<(os, std::endl); // destructor calls are skipped because the compiler // will remove them as empty functions to optimize the code // Product_destructor(book); // Product_destructor(red_apple); }
The compiler also optimized the call to the create_apple() function to avoid temporary object creation. We will discuss the invisible temporaries that were generated by the compiler later in this chapter.