Programming Language Concepts Using C and C++/Object-Based Programming

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Speech, basically an activity that involves sharing a picture of countless hues with others, is successful only when the parties involved come up with similar, if not identical, depictions of a thought, an experience, or a design. Success is a possibility when the following criteria are met:

  1. Parties involved share a common medium,
  2. This common medium supports relevant concepts.

Absence or lack of these criteria will turn communication into a nightmarish mime performance. Imagine two people, with no common medium between them, trying to communicate with each other. Too much room for ambiguity, isn’t it? As a matter of fact, even when the two parties speak the same language their life views, read it “paradigms”, may make communication an unbearable exercise.

A concept, abstract or concrete, does not have any corresponding representation in the language if it doesn’t have room in the imagination of its speakers. For instance, Arabic speakers use the same word for ice and snow, while Eskimos have tens of words for snow. This cannot be used as a proof of intellectual incapacity, however: roles are reversed when it comes to depicting qualities of a camel.

Last deficiency is dealt with in two ways: A new word, probably related to an already existing one, is introduced; or an idiom is invented to express the inexpressible. The former seems like a better choice since the latter is open to misinterpretation and therefore leads to ambiguity, which brings us back to square one. It will also blur its-that is, new concept's-relation with other concepts and turn the vocabulary of a language into a forest of branchless trees.

So, what with programming languages? Programming languages, like natural languages, are meant to be used for communicating with others: machine languages are used to communicate with a specific processor; high-level languages are used to express our solution to fellow programmers; specification languages relay analysis/ design decisions to other analysts/designers.

Had we had it-that is, relaying our ideas to her/his majesty, the computer-as our one and only goal providing a solution to a problem would not have been such a difficult task. However, we have another goal, which is worthier of our intellectual efforts: explaining our solution to other human beings. Achieving this more elusive goal requires adoption of a disciplined approach and a collection of high-level concepts. The former is useful in analyzing the problem at hand and providing a design for its solution. It enables us to more easily spot recurring patterns and apply already-tested solutions to sub-problems. The latter is the vocabulary you use to express yourself. Using idioms instead of language constructs for this purpose is a potential for misunderstanding and a barrier erected between the newcomer and the happy few.

On the other hand, assimilation of idioms will not only let you speak the language but also make you one of the native speakers. Speaking a foreign language is now changed from a dull exercise of applying grammar rules into an intellectual journey in the mindscapes of others. This journey, if not cut short, generally reveals more about the concept the idiom is a substitute for; it helps you build [in a bottom-up fashion] a web of interrelated concepts. Next time you take the journey signposts you erected before will help you more easily find your way.

So, which programming language(s) should we learn? If it is your 10-year old cousin who asked this question, it wouldn’t be an end to the universe if (s)he started with MS Visual Basic or some other Web-based scripting language; if it is a will-be professional who will earn her/ his living by writing programs, (s)he had better care more about concepts than the syntax of certain programming languages. What is crucial in such a case is the ability to build a foundation of concepts, not a collection of random buzzwords. For this reason C/ C++, with their idiomatic nature, will be the primary tools for taking our journey into the programming language concepts.

Module[edit | edit source]

Programming (or software production) can be seen as an activity of translating a problem (expressed in a declarative language) into a solution (expressed in machine code of a computer). Some phases in this translation are carried out by automatic code generating translators such as compilers and assemblers, while some are performed by human agents.[1]

Key to easing this translation process, apart from shifting the burden to code generators, is matching the concepts in the source language with those in the target language. Failing to do so means extra effort is required and leads to using ad hoc techniques and/ or idioms. Such an approach, while good enough to relay the solution to the computer, is not ideal for explaining your intentions to the fellow programmers. Accepting the validity of this observation won’t help you in some situations, however. In such a case, you should strive to adopt an idiomatic approach instead of using an ad hoc technique. And this is exactly what we will try to achieve in this handout: We will establish a semi-formal technique to simulate the notion of objects in C. If successful, such an approach will ease the transition from an object-based initial model (typically, a logical design specification) to a procedural model (C program).

To achieve our goal, we will adopt a technique familiar to us from the last two sections of the Programming Level Structures chapter: simulation of a concept using lower-level ones. Not having a class or module concept in C, we will use an operating system concept: file. To see it in action, read on!

Interface[edit | edit source]

Sticking to a widely adopted convention, contents of a header file, or parts of it, are put inside an #ifndef-#endif pair. This avoids multiple-inclusion of the file. First time the file is processed by the preprocessor, COMPLEX_H is undefined and everything in between the #ifndef and #endif directives will be included. Next time the header file is included while preprocessing the same source file, probably by some other included file, COMPLEX_H will have already been defined and all the contents in between the #ifndef-#endif pair are skipped.

Following the COMPLEX_H macro, General.h is included to bring in the macro definition for BOOL.

Complex.h
#ifndef COMPLEX_H
#define COMPLEX_H

#include "General.h"

The following is a so-called forward declaration. We declare our intention of using a data type named struct _COMPLEX but betray no details about its structure. We fill in the details by providing the definition in the implementation file, Complex.c. Users of the Complex data type need not know the details of the implementation. Such an approach gives the implementer the flexibility of changing the underlying data structures without breaking the existing client programs.

The reason why we defer the definition to the implementation file is the lack of access specifiers (e.g., public, protected, public) in C as we have in object-oriented programming languages. This forces us to keep everything that should not be accessed by the user as a secret.

struct _COMPLEX;

Observe that Complex is defined to be a pointer. This complies with the rule that an interface should include things that don’t change. And regardless of the representation of a complex number, which can be changed at the whim of the implementer, memory layout of the pointer to this representation will never change. Hence do we use Complex in the function prototypes rather than struct _COMPLEX.

Note the distinction between interface and implementation is reinforced by sticking to conventions, not by some language rule checked by the C compiler. We could lump the interface and implementation into a single file and the compiler would not complain a bit.

typedef struct _COMPLEX* Complex;

All of the following prototypes (function declarations) are qualified with the extern keyword. This means that their implementations (function definitions) may appear in a different file, which in this case is the corresponding implementation file. This makes exporting functions possible: All files including the current header file will be able to use these functions without providing any implementations for them. Seen in this perspective, the following list of prototypes can be regarded as an interface to an underlying object claiming to provide an implementation.

Definition: An interface is an abstract protocol for communicating with an object.

All extern functions are exported (that is, they are made visible to other files that are used to build the executable) from the implementing file(s) and are linked with–read it as “imported”–by their clients. Such imported functions are said to have external linkage. In case they are implemented in another file, addresses of these functions are unknown to the compiler and are marked to be so in the object file produced by the compiler. The linker, in the process of building the executable, will later fill in these values.

extern Complex Complex_Create(double, double);
extern void Complex_Destroy(Complex);

Remember that Complex is a typedef for a pointer to struct _COMPLEX. That is, it is essentially a pointer. For this reason, when qualified with the const keyword it is the pointer that is guarded against change, not the fields pointed to by the pointer. This type of behavior is similar to that displayed in Java: when an object field is declared to be final, it is the handle, not the underlying object, that is guarded against change.

Depending on where it is placed using const may mean different things.

i (mutable) int i;
an int value
i (immutable) const int i;
an int value
i (mutable) *i (immutable) const int *i;
a ptr to int an int value
i (immutable) *i (mutable) int *const i;
a ptr to int an int value
i (immutable) *i (immutable) const int *const i;
a ptr to int an int value

Another point worth mentioning is the first formal parameter common to all functions: const Complex this. This corresponds to the target object (the implicitly passed first argument) in the object-oriented programming languages. The function is applied on the object passed as the first argument, which is appropriately named this. Identity of this object cannot change during the function call although the object content can vary. That is why we qualify the parameter type with const keyword.

extern Complex Complex_Add(const Complex this, const Complex);
extern Complex Complex_Divide(const Complex this, const Complex);
extern BOOL Complex_Equal(const Complex this, const Complex);
extern double Complex_Im(const Complex this);
extern Complex Complex_Multiply(const Complex this, const Complex);
extern void Complex_Print(const Complex this);
extern double Complex_Re(const Complex this);
extern Complex Complex_Subtract(const Complex this, const Complex);

#endif

For obvious reasons, signatures of Complex_Create and Complex_Destroy form exceptions to the above mentioned pattern. The constructor-like function Complex_Create allocates heap memory for the yet-to-be-created object and initializes it, whereas the destructor-like function Complex_Destroy frees the heap memory used by the object and makes the object pointer unusable by assigning NULL to it.

Implementation[edit | edit source]

Complex.c
#include <math.h>
#include <stdio.h>
#include <stdlib.h>

#include "General.h"

The following directive may at first seem extraneous. After all, why should we include a list of prototypes (plus some other stuff) when it is us who provide the function bodies for them? By including this list we get the compiler to synchronize the interface and implementation. Say you modified the signature of a function in the implementation file and forgot to make relevant changes in the interface file; the function with the modified signature will not be usable (because it is not listed in the interface) and a function in the interface file won’t have a corresponding implementation (because the intended implementation now has a different signature). When we include the header file, compiler will be able to spot the mismatch and let you know about it.

Ironically, this becomes possible due to the lack of function overloading in C. C compilers will take the implementation as the definition of the corresponding declaration and make sure they match. Had we had function overloading compilers would have taken the definition as an overloading instance of the declaration and carried on with compilation.

Unlike DOS, where ‘\’ is used, UNIX uses ‘/’ as the separator between path name components. C having been developed mainly in UNIX-based environments uses ‘/’ for the same purpose. The reason why our previous examples worked all right was due to the fact that the compilers used were DOS implementations and interpreted ‘\’ correctly. If we want more portable code, we should use ‘/’ instead of ‘\’.

#include "math/Complex.h"

The following prototypes are provided here in the implementation file, because they are not part of the interface. They are used as utility functions to implement other functions. Had they been part of the interface, we would have put them in the corresponding header file, Complex.h.

Notice these two functions are qualified to be static. When global variables and functions are declared static, they are made local to the file they are being defined in.[2] That is, they are not accessible from outside the file. Such an object or a function is said to have internal linkage.

In C, functions, variables, and constants are by default extern. In other words, unless otherwise stated they are accessible from outside the current file. This means we can omit all occurrences of extern in the header file. This is not advisable, though. It would make porting your code from C to C++ difficult. For example, constants in C++ are by default static, exactly the opposite of what we have in C!

Definition: An implementation is a concrete data type that supports one or more interfaces by providing precise semantic interpretations of each of the interface’s abstract operations.

static Complex Complex__Conjugate(const Complex);
static double Complex__AbsoluteValue(const Complex);

We provide the details for the forward declaration made in the header file. Realize that this is the implementation file and the following definition is seen only by the implementer. Normally, the only files seen by the users are header files and the object files.

struct _COMPLEX {
  double im, re;
};

Following function serves to create and initialize a Complex variable, similar to the combination of new operator and constructor in object-oriented programming languages.

Definition: Constructor is a distinguished, implicitly called[3] function that initializes an object. Following the successful allocation of memory typically by a new operator[4], it is invoked by the compiler-synthesized code.

Note the constructor-like function must be explicitly called in our case. Because, the notion of a constructor is not part of the C programming language.

Sometimes we need to have more than one such function. As a matter of fact, there are at least two other ways to construct a complex number: from another complex number and polar coordinates. Unfortunately, should we like to add another constructor; we have to come up with a function that has a new name or provide different function definitions through a single variadic funtion, because C does not support function name overloading.

Definition: Function name overloading allows multiple function instances that provide a common operation on different argument types to share a common name.

Complex Complex_Create(double real, double imaginary) {
  Complex this;

  this = (Complex) malloc(sizeof(struct _COMPLEX));
  if (!this) {
    fprintf(stderr, "Out of memory...\n");
    return(NULL);
  } /* end of if(!this) */

  this->re = real;
  this->im = imaginary;

  return(this);

Assuming the widely used convention that return value is stored in a register, upon completion of the constructor function we have the partial memory image provided on the next page.

Partial memory image (constructor)

Observe the lifetime of the memory region allocated on the heap is not limited to that of the local pointer this. At the conclusion of the function, this will have been automatically discarded while heap memory will still be alive thanks to the pointer copied into the register.

} /* end of Complex Complex_Create(double, double) */

Following function serves to destroy and garbage-collect a Complex variable. It is similar to destructors in object-oriented programming languages.

Definition: Destructor is a distinguished, implicitly called function that cleans up any of the resources the object acquired through the execution of its constructors, or through the execution of any of its member functions along the way. It is typically called before the invocation of a memory de-allocation function.

Programming languages with garbage collection introduce the notion of a finalizer function. Now that the garbage collector reclaims unused heap memory, programmer need not bother about it anymore. But, what about files, sockets, and etc.? These must in some way be returned to the system, which is what a finalizer is meant to do.

Our destructor-like function is rather simple. All we have to do is to return the heap memory allocated to the Complex variable that is passed as the sole argument of the function.

free returns the memory pointed to by its argument, not the argument itself. One other reminder: free is used to de-allocate heap memory; static data and run-time stack memory is de-allocated by the compiler-synthesized code.

Be that a region in heap or otherwise, one should not make assumptions about the contents of de-allocated memory. Doing so will give rise to non-portable software with unpredictable behavior.

void Complex_Destroy(Complex this) { free(this); }

Complex Complex_Add(const Complex this, const Complex rhs) {
  Complex result = Complex_Create(0, 0);

  result->re = this->re + rhs->re;
  result->im = this->im + rhs->im;

  return(result);
} /* end of Complex Complex_Add(const Complex, const Complex) */

Complex Complex_Divide(const Complex this, const Complex rhs) {
  double norm = Complex__AbsoluteValue(rhs);

  Complex result = Complex_Create(0, 0);
  Complex conjugate = Complex__Conjugate(rhs);
  Complex numerator = Complex_Multiply(this, conjugate);

  result->re = numerator->re / (norm * norm);
  result->im = numerator->im / (norm * norm);

  Complex_Destroy(numerator);
  Complex_Destroy(conjugate);

  return(result);
} /* end of Complex Complex_Divide(const Complex, const Complex) */

Following function checks for equality of two complex numbers. Note that equality-check and identity-check are two different things. That’s why we do not use pointer semantics for comparison. Instead, we check whether the corresponding fields of the two numbers are equal or not.

Example: Identity-check and equality-check are different things.

Complex c1 = Complex_Create(2, 3); Complex c2 = Complex_Create(2, 3); Complex c3 = c1;

Given the above definitions, all three objects are equal while only c1 and c3 are identical.

BOOL Complex_Equal(const Complex this, const Complex rhs) {
  if (this->re == rhs->re && this->im == rhs->im)
    return(TRUE);
    else return(FALSE);
} /* end of BOOL Complex_Equal(const Complex, const Complex) */

Following function serves as what is called a get-method (or an accessor). We provide such functions in order to avoid the violation of information hiding principle. The user should access the underlying structure members through functions. Sometimes functions are also provided to change values of members. These are called the set-methods (or mutators).

Definition: Information hiding is a formal mechanism for preventing the functions of a program to access directly the internal representation of an abstract data type.

It should be noted that accessors [and mutators] can also be provided for attributes of an object that are not backed by members of the underlying structure. For example, a complex number has two polar attributes that can be derived from its Cartesian attributes: norm and angle.

double Complex_Im(const Complex this) { return(this->im); }

Complex Complex_Multiply(const Complex this, const Complex rhs) {
  Complex result = Complex_Create(0, 0);

  result->re = this->re * rhs->re - this->im * rhs->im;
  result->im = this->re * rhs->im + this->im * rhs->re;

  return(result);
} /* end of Complex Complex_Multiply(const Complex, const Complex) */

Next function is meant to serve a similar purpose as the toString of Java. This one, however, does not return any value; it just writes the output to the standard output file, which is definitely much less flexible than its Java counterpart, where a String is returned and the user can make use of it in any way she sees it fit: she can send it to the standard output/error file, a disk file, or another application listening at the end of a socket. A function with such a semantic is given below.

char* Complex_ToString(const Complex this) { double im = this->im; double re = this->re; char *ret_str = (char *) malloc(25 + 1); if(im == 0) { sprintf(ret_str, %g, re); return ret_str; } if(re == 0) { sprintf(ret_str, %gi, im); return ret_str; } sprintf(ret_str, (%g %c %gi), re, im < 0 ? - : +, im < 0 ? im : im); return ret_str; } /* end of char* Complex_ToString(const Complex) */

However, users of the above implementation should not forget returning the memory allocated for the char* object holding the string representation.

char* c1_rep = Complex_ToString(c1); ... // use c1_rep free(c1_rep); // no automatic garbage collection in C!

void Complex_Print(const Complex this) {
  double im = this->im, re = this->re;

  if (im == 0) {printf(%g, re); return;}
  if (re == 0) {printf(%gi, im); return;}
  printf("(%g %c %gi)", re, im < 0 ? - : +, im < 0 ? im : im);
} /* end of void Complex_Print(const Complex) */

double Complex_Re(const Complex this) { return(this->re); }

Complex Complex_Subtract(const Complex this, const Complex rhs) {
  Complex result = Complex_Create(0, 0);

  result->re = this->re - rhs->re;
  result->im = this->im - rhs->im;

  return(result);
} /* end of Complex Complex_Subtract(const Complex, const Complex) */

Next two functions do not appear in the header file. Users of the Complex data type do not even know about them. For this reason, they do not [and cannot] use them directly. The implementer can at any time choose to make changes to these functions and other hidden entities, such as the representation of the type. This is a flexibility provided to us by applying the information hiding principle.

static Complex Complex__Conjugate(const Complex this) {
  Complex result = Complex_Create(0, 0);

  result->re = this->re;
  result->im = - this->im;
  
  return(result);
} /* end of Complex Complex__Conjugate(const Complex) */

static double Complex__AbsoluteValue(const Complex this) {
  return(hypot(this->re, this->im));
} /* end of double Complex__AbsoluteValue(const Complex) */

Test Program[edit | edit source]

Complex_Test.c
#include <stdio.h>

Inclusion of Complex.h brings in the prototypes for functions that can be applied on a Complex object. This enables the C compiler to check whether these functions are used correctly in the appropriate context. One other purpose of header files is to serve as a specification of the interface to the human readers.

Notice it is the prototype that is brought in, not the object code that contains the implementation. Object code of external functions is plugged in by the linker.

Normally, a user is not given access to the source files. The rationale behind this is to protect the implementer’s intellectual property. Instead, the object files, which are not intelligible to human readers, are given. The object files are the compiled versions of the corresponding source files and therefore semantically equivalent to the source files.

#include "math/Complex.h"

int main(void) {
  Complex num1, num2, num3;

  num1 = Complex_Create(2, 3);
  printf("#1 = "); 
  Complex_Print(num1); printf("\n");
  num2 = Complex_Create(5, 6);
  printf("#2 = ");
  Complex_Print(num2); printf("\n");

As soon as the next assignment command is completed we will have the partial memory image given below:

Partial memory layout (1)

Notice the non-contiguous nature of heap allocation. Although for a program of this size memory allocated will likely be contiguous, as the program gets larger this becomes impossible. The only job of a memory allocator is to satisfy allocation demands; address of the allocated memory is of no consequence. For doing this it may use different algorithms such as first-fit, worst-fit, best-fit, and etc.

  num3 = Complex_Add(num1, num2);
  printf("#1 + #2: "); Complex_Print(num3); printf("\n");

In Complex_Add we had created a complex number on the heap and returned a pointer to this as the result. Next time we use the same Complex variable to hold the result of another operation, the old location that holds the result of the previous operation will be unreachable. Such unreachable, and therefore unusable, locations in memory are referred to as garbage. In programming languages with automatic garbage collection, such unused heap memory is reclaimed by the runtime system of the language. In object-oriented programming languages without automatic garbage collection, this must be taken care of by the programmer through the invocation of a function such as delete, which in turn invokes a special function called destructor. In non-object-oriented programming languages, destructor function has to be simulated and the programmer must explicitly return such memory regions back to the system for reuse. In our case, the function simulating the destructor is named Complex_Destroy.

Upon completion of the next line, we will have the following partial memory image:

Partial memory layout (2)

Observe that num3 still points to the same location. That is, we can still use num3 to manipulate the same region of memory. But, no guarantee is given about the contents. So, in order to keep the user away from the temptation of using this value, it would be a good idea to change the value of num3 to something that cannot be used to refer to an object. This value is NULL. Each time a memory region is de-allocated, the pointer pointing to it should either be made to show another region, as in this test program, or the user should assign NULL to the pointer variable. A second, more secure approach gives the responsibility of assigning NULL to the implementer. The problem is we need to modify the pointer itself, not the region it points to. This deficiency can be removed by making the following changes:

Complex.c

... void Complex_Destroy(Complex* this) { free(*this); *this = NULL; } /* end of void Complex_Destroy(Complex* ) ...

Complex_Test.c

... Complex_Destroy(&num3); ...

Complex_Destroy(num3);
num3 = Complex_Subtract(num1, num2);
	printf("#1 - #2: ");	Complex_Print(num3); printf("\n");

Complex_Destroy(num3);
num3 = Complex_Multiply(num1, num2);
	printf("#1 * #2: ");	Complex_Print(num3); printf("\n");

Complex_Destroy(num3);
num3 = Complex_Divide(num1, num2);
	printf("#1 / #2: ");	Complex_Print(num3); printf("\n");

Complex_Destroy(num3);
Complex_Destroy(num1);
Complex_Destroy(num2);

return(0);
} /* end of int main(void) */

Running the Test Program[edit | edit source]

gcc –I ~/include –c Complex.c↵ # ~ stands for the home directory of the current user; note the space between –I and ~/include!

The above command will produce Complex.o. Note the use of –I and –c options. The former gives the preprocessor a hint about the place(s) to look for non-system header files, while the latter will cause the compiler to stop before linking. Unless a header file is not found in the given list of directories, it is searched in the system directories.

As you can see, our code has no main function. That is, it is not runnable on its own. It just provides an implementation for complex numbers. This implementation will later be used by programs like Complex_Test.c, which manipulate complex numbers.

gcc –I ~/include –lm –o Complex_Test Complex_Test.c Complex.o↵

The above command will compile Complex_Test.c and link it with the required object files. The output of linking will be written in a file named Complex_Test. -l option is used for linking to libraries.[5] In this case we link to a library named libm.a, where m stands for the math library. We need to link to this library to make sure that object code for functions, such as hypot, is included in the executable. As a result of linking to the math library, only the object code of the file containing the implementation for hypot is included in the executable.

Program Development Process[edit | edit source]

The whole process can be pictured as shown in the following diagram.

Producing an executable

Black colored region in the diagram represents the implementer side of the process. What goes on inside this box is of no concern to the users; number of sub-processes involved, intermediate outputs produced are immaterial to them. As a matter of fact, the module could have been written in a programming language other than C and it would still be OK as long as the client and the implementer use the same binary interface. All they should care about is the output of this black-box, Complex.o, and the header file, Complex.h, which is needed to figure out the functionality offered by Complex.o.

Note that Complex.o is semantically equivalent to Complex.c. The difference lies in their intelligibility to human readers and computers: C source code is intelligible to a human being while the corresponding object file is not. This lack of intelligibility serves to protect the intellectual property of the implementer. After spending months on a project, the implementer delivers the object module to the clients, which contains no hints as to how it has been implemented.

Once the user acquires the object module and the related header file(s), she follows the following steps to build an executable using this object module.

  • Write the source code for the program. Now that this program will refer to the functionality offered in Complex.o, we must include the relevant header files, which is in this case Complex.h. This will ensure correct use of functionality supplied in Complex.o.
  • Once you get the program to compile you must provide the code that implements the functionality used. This functionality is delivered to you in the object module named Complex.o. All you have to do is to link this with the object code of your test program.
  • In addition to the object module, you must have access to the libraries and other object modules used in Complex.o and the program. In other words, we may not be able to test our program unless we have certain files. In our case these are the Standard C Library and the Math Library. Unless we have these libraries on our disk or the implementer supplies them to us, we will not be able to build the executable.
Summary
File type Implementer User Purpose
Source modules (*.c) Used by human agents in software development, upgrade, and maintenance
Object modules (*.o, *.a, *.so or *.obj, *.lib, *.dll) Used by linker/loader to provide missing functionality in the client program; not intelligible to human beings; automatically produced out of and semantically equivalent to the corresponding source module
Header files (*.h) Used to serve as a contract between the implemeter and users; used by the compiler for type-checking and by the user for exploring functionality provided in the object module

Notes[edit | edit source]

  1. All but one of these activities performed by human agents can be accomplished by an automaton. However, the very act of devising the initial model for the problem seems to be staying with us for a while.
  2. Relative address of a function local to the current file is determined at compile time. In other words, address of such a funtion is determined statically, Hence is the static keyword.
  3. It’s not an implicit call in the sense of the definition made in the Control Level Structure chapter. Although it is not the programmer who makes the call, constructor call is not outside the control of the programmer. The programmer has knowledge of when and which constructor will be invoked.
  4. In C++, in addition to creating it in the heap and using through a pointer, an object can be embedded into the static data region or runtime stack. That is, they can be accessed without pointers. Such objects obey C++ scope rules just like other variables: they are automatically created and destroyed as the related scope is entered and exited. For this reason, they do not require any invocation of the new operator. Same behavior can be seen in the use of structs (value types) in C#.
  5. A [static] library is basically a set of .o (.obj in MS Windows) files, obtained by compiling a corresponding set of .c files, plus some meta-data. This meta-data is used to speed up extraction of .o files and answer queries about the library content. There are typically one or more .h files containing the declarations necessary to use those .o files.