C++ Tutorials
61. Converting Default Function Arguments in C++ to Java
By: Charles : 2007-09-15
Description: One extensively used feature of C++ that Java does not support is default function arguments. For example, the area() function shown in the following C++ program computes the area of a rectangle if called with two arguments, or the area of a square if called with one argument.
62. C ++ Reference Parameters Versus Java Reference Parameters
By: Abinaya : 2007-09-15
Description: The C++ pointer parameter, In Java, became a reference parameter. Of course, C++ also supports reference parameters. As mentioned, most pointer parameters found in C++ code are simply holdovers from C. Nearly all new C++ code will use reference parameters when a function needs access to the argument, itself. (In essence, pointer parameters, although still common, are actually anachronisms in most C++ code.) Since both Java and C++ support reference parameters, you might think that the conversion of a C++ function that uses reference parameters to a Java method would involve few changes. Unfortunately, this is not always the case. To understand why, let's convert the following C++ program, which swaps the contents of two Coord objects using reference parameters:
63. Converting Pointers that Operate on Arrays in C++ to Java
By: Charles : 2007-09-15
Description: Conceptually, converting C++-style pointer-based array accessing into the equivalent Java-compatible array indexing is straightforward—simply substitute the appropriate array-indexing statements. However, in practice this may require some thought. Pointer-based array accessing can be a bit difficult to follow, because the normal C++ coding style encourages rather dense, complex expressions. For example, this short C++ program copies the contents of one array to another. It uses 0 to mark the end of the arrays. Pay special attention to the pointer expressions. Even in this simple example, if you did not know that this program copied the contents of nums to copy (and later displayed the arrays), it would require some careful thought before you were completely sure that you knew what the code was doing.
64. Converting Pointer Parameters in C++ to Java
By: Baski : 2007-09-15
Description: For the most part, it is quite easy to convert a C++ function that uses pointer parameters into its equivalent Java method. Since Java passes all objects by reference, sometimes the conversion simply requires the removal of C++'s pointer operators. For example, consider this C++ program that reverses the signs of a Coord object, which stores a pair of Cartesian coordinates. The function reverseSign() is passed a pointer to the Coord object that will be reversed. As you can see, C++'s *, &, and -> pointer operators are used to perform the operation.
65. The indirection operator (*) - dereference operator.
By: Emiley J : 2007-09-14
Description: The indirection operator (*) is also called the dereference operator. When a pointer is dereferenced, the value at the address stored by the pointer is retrieved.
66. What Is a Pointer in C++?
By: Charles : 2007-09-14
Description: Pointers present two special challenges when learning C++: They can be somewhat confusing, and it isn't immediately obvious why they are needed. This article introduces how pointers work, step by step.
67. Storing the Address in a Pointer
By: Daniel Malcolm : 2007-09-14
Description: Every variable has an address. Even without knowing the specific address of a given variable, you can store that address in a pointer.
68. Manipulating Data by Using Pointers
By: Fazal : 2007-09-14
Description: Once a pointer is assigned the address of a variable, you can use that pointer to access the data in that variable. Program below demonstrates how the address of a local variable is assigned to a pointer and how the pointer manipulates the values in that variable.
69. The Stack and the Free Store in C++
By: Grenfel : 2007-09-14
Description: Local variables are on the stack, along with function parameters. Code is in code space, of course, and global variables are in global name space. The registers are used for internal housekeeping functions, such as keeping track of the top of the stack and the instruction pointer. Just about all remaining memory is given over to the free store, which is sometimes referred to as the heap.
70. C++ Sample Program for Allocating, using, and deleting pointers.
By: Henry : 2007-09-14
Description: The program below demonstrates allocating a variable on the heap, using that variable, and deleting it.