Pointer in my eyes

Source: Internet
Author: User

Pointers in my eyes-a good article on learning pointers
2002-8-9

Sender: girlrong (Arong), email area: c
Question: pointer in my eyes-author order
Mailing site: Netease virtual community (Mon Aug 2 16:12:02 1999), internal mail

For beginners. This is the purpose of my post. I am also a beginner (I have emphasized it many times)
In my understanding, I wrote things that beginners think difficult to understand in simple languages. Because the elementary school language
I did not learn well, so I did my best to achieve this goal. Do your best.
Pointers are both difficult and important in C and C ++. I only master basic in DOS. Other features of C Language
Is similar in basic. Only pointers are not available in baisc. Pointer is the soul of C
.
I don't want to repeat what is clearly stated in most books. I just can't tell you what I have read.
Chu did not say anything, and I thought I understood something. My goal is:
1. By writing these things, I will clarify the vague knowledge about C in my head.
2. A tip for beginners.
3. Earn several experience values. (Because it's hard to paste these things)

Chapter 1. Pointer Concept

A pointer is a special variable. The value stored in it is interpreted as an address in the memory.

To understand a pointer, we need to understand the four aspects of the pointer: pointer type, pointer pointing
Type, pointer value, memory zone pointed to by pointer, and memory zone occupied by pointer. Let
We describe them separately.
First, declare several pointers for example:
Example 1:
(1) int * PTR;
(2) char * PTR;
(3) int ** PTR;
(4) int (* PTR) [3];
(5) int * (* PTR) [4];
If you do not understand the last few examples, please refer to the articles I posted some time ago? Lt; ++ Complex type declaration>.

1. Pointer type.
From the perspective of syntax, you only need to remove the pointer name in the pointer declaration statement, and the rest is
Is the type of this pointer. This is the type of the pointer. Let's take a look at
Type:
(1) int * PTR; // the pointer type is int *
(2) char * PTR; // the pointer type is char *
(3) int ** PTR; // the pointer type is int **
(4) int (* PTR) [3]; // the pointer type is int (*) [3]
(5) int * (* PTR) [4]; // the pointer type is int * (*) [4]
How is it? Is it easy to find the pointer type?

2. The type to which the Pointer Points.
When you access the memory area pointed to by the pointer, the type pointed to by the pointer determines the compilation
The content in the memory area is treated as something.
In terms of syntax, you only need to declare the pointer name in the pointer declaration statement and the pointer declaration character on the left of the name.
* Remove, and the rest is the type pointed to by the pointer. For example:
(1) int * PTR; // The Pointer Points to an int type.
(2) char * PTR; // The Pointer Points to a char type.
(3) int ** PTR; // The type pointed to by the pointer is int *
(4) int (* PTR) [3]; // The type pointed to by the pointer is int () [3]
(5) int * (* PTR) [4]; // The type pointed to by the pointer is int * () [4]
In pointer arithmetic operations, the type pointed to by the pointer has a great effect.
The pointer type (the pointer type) and the pointer type are two concepts. When you
The more familiar you are, the more you will find that the concept of "type" that is mixed with pointers is divided into "pointer
The two concepts of "type" and "Type pointed to by Pointer" are one of the key points to be proficient in pointers. I can't
When I found some poorly written books, I stirred up the two concepts of pointers, so I started reading books.
The more you see, the more confused you are.

3. The pointer value, or the memory zone or address pointed to by the pointer.
The pointer value is the value stored by the pointer. The value will be treated as an address by the compiler instead
A common value. In a 32-bit program, the value of all types of pointers is a 32-bit integer, because
In 32-bit programs, all the memory addresses are 32-bit long.
The memory area pointed to by the pointer starts from the memory address represented by the pointer value, and the length is si.
A memory area of zeof (the type pointed to by the pointer. Later, we will say that the value of a pointer is XX.
When the pointer points to a memory area with the XX address as the header, we say that a pointer points to a block
In the memory area, the pointer value is the first address of the memory area.
The memory zone pointed to by the pointer and the type pointed to by the pointer are two completely different concepts. In example 1
The type to which the Pointer Points already exists, but the pointer has not been initialized, so it points to the memory Zone
It does not exist, or it is meaningless.
In the future, every time you encounter a pointer, you should ask: What is the type of this pointer? Pointer
What is the type? Where does this pointer point?
4. The memory occupied by the pointer.
How much memory does the pointer occupy? You only need to use the sizeof function (pointer type) to test it.
. On a 32-bit platform, the pointer occupies 4 bytes.
The memory occupied by pointers can be used to determine whether a pointer expression is left.

Chapter 2. Arithmetic Operations on pointers

The pointer can be added or subtracted from an integer. The meaning of this operation of pointer and addition and subtraction of common values
The meaning of the operation is different. For example:
Example 2:
1. Char A [20];
2. Int * PTR =;
...
...
3. PTR ++;
In the preceding example, the pointer PTR is of the int type * and it points to the int type. It is initialized to point to the integer.
Variable. In the next 3rd sentences, the pointer PTR is added with 1, and the compiler processes the pointer as follows:
If sizeof (INT) is added to the PTR value, 4 is added to the 32-bit program. Because the address is in bytes
Therefore, the address pointed to by PTR is increased by four bytes from the address of the original variable A to the high address.
Since the length of the char type is one byte, the PTR originally points to the unit 0th of array.
Four bytes, pointing to the four bytes starting from Unit 4th in array.
We can use a pointer and a loop to traverse an array. For example:
Example 3:
Example 3:
Int array [20];
Int * PTR = array;
...
// The code for assigning values to integer arrays is omitted here.
...
For (I = 0; I <20; I ++)
{
(* PTR) ++;
PTR ++;
}
In this example, the value of each unit in the integer array is added to 1. Since every loop adds the pointer PTR to 1
In each loop, the next unit of the array can be accessed.
Let's look at the example:
Example 4:
1. Char A [20];
2. Int * PTR =;
...
...
3. PTR + = 5;
In this example, PTR is added with 5, and the compiler processes it like this: add the value of the pointer PTR to 5
By sizeof (INT), in a 32-bit program, we add 5 multiplied by 4 = 20. Because the unit of the address is byte
The current PTR points to a higher address than the address pointed to by the PTR after the addition of 5.
20 bytes. In this example, the PTR before 5 is not added to four bytes starting from Unit 0th of array.
After adding 5, PTR has pointed out the valid range of array. Although this problem may occur in applications
But it is syntactically acceptable. This also reflects the flexibility of pointers.
In the preceding example, if PTR is subtracted from 5, the processing process is similar, except that the PTR value is subtracted.
Go to the 5-byte sizeof (INT). The new PTR points to a lower address than the original PTR points.
20 bytes to be moved.

To sum up, after a pointer ptrold is added with an integer N, the result is a new pointer ptrnew,
The ptrnew type is the same as the ptrold type.
The same is true. The value of ptrnew is increased by N multiplication sizeof (type pointed to by ptrold) characters than the value of ptrold.
Section. That is to say, ptrnew will point to a greater memory area than the memory area pointed to by ptrold.
The number of N-byte multiplied by sizeof (the type pointed by ptrold.
After a pointer ptrold is subtracted from an integer N, the result is a new pointer ptrnew, ptrnew class.
Type and ptrold are of the same type, and ptrnew is of the same type as ptrold. PT
The value of rnew will be less than the value of ptrold by N multiplied by sizeof (type indicated by ptrold) bytes, that is
, Ptrnew points to the memory area than the ptrold points to the memory area to move N by siz to the low address direction
EOF (the type indicated by ptrold) bytes.

Chapter 3. Operation? And *

Here & is the address operator, * is... the book is called "indirect operator ".
& The operation result of A is a pointer. the pointer type is the type of a plus *.
Is the type of A. The Pointer Points to the address, that is, the address of.
* P's computation results are varied. In short, the result of * P is what P points.
Some features: its type is P-pointed, and its occupied address is P-pointed.
Example 5:
Int A = 12;
Int B;
Int * P;
Int ** PTR;
P = & A; // The result of & A is a pointer of the int type * and the int type.
Is the address of.
* P = 24; // * P result. Here its type is int, and the address it occupies is the location pointed to by P.
Obviously, * P is variable.
PTR = & P; // The result of & P is a pointer. the pointer type is p type plus *. Here it is int
**. The Pointer Points to the p type. Here it is int *. The Pointer Points to the address of the pointer.
P's own address.
* PTR = & B; // * PTR is a pointer, and the result of & B is also a pointer. The types and
The type is the same, so it is no problem to assign a value to * PTR with & B.
** PTR = 34; // * the PTR result is what PTR points to. Here it is a pointer
The result of the X operation is an int type variable.

Chapter 4. Pointer expression.

If the final result of an expression is a pointer, this expression is called a pointer expression.
Below are some examples of pointer expressions:
Example 6:
Int A, B;
Int array [10];
Int * pA;
Pa = & A; // & A is a pointer expression.
Int ** PTR = & PA; // & PA is also a pointer expression.
* PTR = & B; // * PTR and & B are pointer expressions.
Pa = array;
Pa ++; // This is also a pointer expression.
Example 7:
Char * arr [20];
Char ** Parr = arr; // If arr is regarded as a pointer, arr is also a pointer expression.
Char * STR;
STR = * Parr; // * Parr is a pointer expression.
STR = * (Parr + 1); // * (Parr + 1) is a pointer expression.
STR = * (Parr + 2); // * (Parr + 2) is a pointer expression.

Since the result of a pointer expression is a pointer, the pointer expression also has four
Elements: pointer type, pointer pointing type, pointer pointing memory zone, pointer occupied
Memory.
Well, when the result pointer of a pointer expression has clearly occupied the memory of the pointer itself
The pointer expression is a left value, otherwise it is not a left value.
In Example 7, & A is not a left value because it does not occupy clear memory. * PTR is a left
Value, because the * PTR pointer occupies the memory, in fact * PTR is the pointer Pa, since Pa is already included
* PTR also has its own location.

Chapter 5. Relationship between arrays and pointers

If you do not understand the statements for declaring arrays, refer to the articles I posted earlier? Lt; Understand the complex types of C and C ++ statements>.
The array name can be regarded as a pointer. See the following example:
Example 8:
Int array [10] = {,}, value;
...
...
Value = array [0]; // It can also be written as: value = * array;
Value = array [3]; // It can also be written as: value = * (array + 3 );
Value = array [4]; // It can also be written as: value = * (array + 4 );
In the preceding example, the array name array represents the array, and the type is int [10 ].
If rray is a pointer, it points to the 0th units of the array. The type is int *, and the type is number.
The group unit type is int. Therefore, it is not surprising that * array is equal to 0. Similarly, array + 3 is
The pointer pointing to the array's 3rd units, so * (array + 3) is equal to 3. Others.

Example 9:
Example 9:
Char * STR [3] = {
"Hello, this is a sample! ",
"Hi, good morning .",
"Hello World"
};
Char s [80];
Strcpy (S, STR [0]); // It can also be written as strcpy (S, * Str );
Strcpy (S, STR [1]); // It can also be written as strcpy (S, * (STR + 1 ));
Strcpy (S, STR [2]); // It can also be written as strcpy (S, * (STR + 2 ));
In the preceding example, STR is an array of three elements, each of which is a pointer.
Each needle points to a string. If the pointer array name STR is used as a pointer, it points to the array No. 0th.
Unit. Its type is Char **, and it points to char *.
* STR is also a pointer. Its type is char * and it points to Char, which points to the location
The address is the string "Hello, this is a sample! ", That is, the address of 'H.
STR + 1 is also a pointer that points to unit 1st of the array. Its type is Char **, which points
Is char *.
* (STR + 1) is also a pointer. Its type is char *, and it points to Char.
The first character 'h' of "Hi, good morning.", and so on.

The following is a summary of the array name problem. If an array type array [N] is declared
The name array has two meanings: First, it represents the entire array, and its type is type [N]; second
, It is a pointer, the pointer type is type *, the pointer to the type is type, that is, the array
The type of the Unit. The memory area pointed to by the pointer is the unit 0th of the array. the pointer occupies a separate
Memory zone. Note that it is different from the memory zone occupied by the array unit 0th. The pointer value cannot be modified.
That is, the expression similar to array ++ is incorrect.
In different expressions, array names can play different roles.
In the expression sizeof (array), the array name array represents the array itself, so the sizeof Function
Measure the size of the entire array.
In the expression * array, array acts as a pointer, so the result of this expression is
The value of unit 0. Sizeof (* array) measures the size of the array unit.
Expression Array + N (where n = 0, 1, 2 ,.....) Array is a pointer, so arr
The result of Ay + N is a pointer whose type is type *. It points to type, which points to
Unit N. Therefore, sizeof (array + n) measures the pointer size.
Example 10:
Int array [10];
INT (* PTR) [10];
PTR = & array;
In the above example, PTR is a pointer and its type is int (*) [10]. It points to int [10].
, We use the first address of the entire array to initialize it. In the statement PTR = & array, array represents the array.
Body.

This section describes the sizeof () function.
Is it the size of the pointer's own type or the size of the type pointed to by the pointer? The answer is the former. For example:

INT (* PTR) [10];
In a 32-bit program, there are:
Sizeof (INT (*) [10]) = 4
Sizeof (INT [10]) = 40
Sizeof (PTR) = 4
In fact, sizeof (object) measures the size of the object's own type, rather
Type.

Chapter 6. Relationship between pointer and Structure Type

You can declare a pointer to a structure object.
Example 11:
Struct mystruct
{
Int;
Int B;
Int C;
}
Mystruct Ss = {20, 30, 40}; // declares the structure object SS, and initializes the three members of the SS
To 20, 30, and 40.
Mystruct * PTR = & SS; // declares a pointer to the structure object ss. Its type is
Mystruct *, which points to the type of mystruct.
Int * pstr = (int *) & SS; // declares a pointer to the structure object ss. But its
Type is different from the type it points to and PTR.

How can I access the three member variables of SS through the pointer PTR?
Answer:
PTR->;
PTR-> B;
PTR-> C;
How can I access the three member variables of SS through the pointer pstr?
Answer:
* Pstr; // access a, a member of the SS.
* (Pstr + 1); // access B, a member of SS.
* (Pstr + 2) // access the SS member C.
Haha, although I have adjusted the above Code on my msvc ++ 6.0, you must know that using P
The access to structure members by STR is not formal. To explain why it is not formal, let's see how
To access each unit of the array:
Example 12:
Int array [3] = {35, 56, 37 };
Int * pA = array;
The method to access the three elements of the array through pointer PA is as follows:
* PA; // access to unit 0th
* (PA + 1); // access to unit 1st
* (PA + 2); // access to unit 2nd
The format is the same as the format of the informal method used to access structure members through pointers.
When all C/C ++ compilers arrange the elements of an array, they always store the elements in a continuous array.
There is no gap between the Unit and the unit in the storage area. However, when each member of a structure object is stored
In the compiling environment, you may need word alignment, double-word alignment, or other alignment.
How many members are added? Quot; fill Byte ", which may lead to several bytes between each Member
.
Therefore, in example 12, even if * pstr accesses the first member variable A of the structure object SS
It is not guaranteed that * (pstr + 1) will be able to access structure member B. Because members A and B may have
Several Padding Bytes. Maybe * (pstr + 1) can access these padding bytes. This also proves that
Needle flexibility. If your goal is to see whether there are any bytes filled with each structure member,
Hey, this is a good method.
The correct method for accessing structure members through pointers is to use the pointer PTR method in example 12.

Chapter 7. Relationship between pointers and functions

You can declare a pointer as a pointer to a function.
Int fun1 (char *, INT );
INT (* pfun1) (char *, INT );
Pfun1 = fun1;
....
....
Int A = (* pfun1) ("abcdefg", 7); // call a function through a function pointer.
You can use pointers as function parameters. In function call statements, pointer expressions can be used
Real parameters.
Example 13:
Int fun (char *);
Int;
Char STR [] = "abcdefghijklmn ";
A = fun (STR );
...
...
Int fun (char * s)
{
Int num = 0;
For (INT I = 0; I
{
Num + = * s; s ++;
}
Return num;
)
In this example, function fun counts the sum of the ASCII values of each character in a string. As mentioned above
The array name is also a pointer. In function calls, after STR is passed to the form parameter S as a real Parameter
Actually, the STR value is passed to S. The address pointed by S is the same as the address pointed by STR,
STR and S occupy their respective storage space. In the function body, performing the auto-increment 1 operation on S does not mean the same
'Str.

Chapter 8. Pointer type conversion

When we initialize a pointer or assign a value to a pointer, the left side of the value is a pointer
The right side of the value is a pointer expression. In most cases
The type of the needle is the same as that of the pointer expression.
The types are the same.
Example 14:
1. Float F = 12.3;
2. Float * fptr = & F;
3. Int * P;
In the above example, if we want to point the pointer P to the real number F, what should we do? Use the following
Statement?
P = & F;
No. Because the pointer P is of the int type *, it points to the int type. The result of Expression & F is 1.
Pointer. the pointer type is float * and it points to float. The two are inconsistent.
The method is not feasible. At least in my msvc ++ 6.0, the pointer assignment statement requires classes on both sides of the assignment number.
Type consistency, pointing to the same type. I have not tried it on other compilers. You can try it. To
To achieve our goal, we need to perform "forced type conversion ":
P = (int *) & F;
If there is a pointer P, we need to change its type and the type to tyep * and type,
The syntax format is:
(Type *) P;
In this way, the forced type conversion result is a new pointer. the type of the new pointer is type *, which points
The type is type, and it points to the address that the original Pointer Points. All attributes of the original pointer P are
Not modified.

If a function uses a pointer as a parameter
During the merging process, pointer type conversion also occurs.
Example 15:
Void fun (char *);
Int A = 125, B;
Fun (char *) & );
...
...
Void fun (char * s)
{
Char C;
C = * (S + 3); * (S + 3) = * (S + 0); * (S + 0) = C;
C = * (S + 2); * (S + 2) = * (S + 1); * (S + 1) = C;
}
}
Note that this is a 32-bit program, so the int type occupies four bytes, And the char type occupies one byte. Letter
Shufun is used to reverse the order of four bytes of an integer. Have you noticed? In function call
In the statement, the result of the real parameter & A is a pointer, whose type is int *, and its type is int. Shape
The pointer type is char *, which points to Char. In this way, the combination of real parameters and form parameters
In the process, we must perform a conversion from int * type to char * type. In combination with this example, we can
In this way, we can imagine the conversion process of the compiler: the compiler first constructs a temporary pointer char * temp,
Run temp = (char *) & A, and then pass the Temp value to S. So the final result is: S
The type is char *, and it points to Char, which points to the first address of.

We already know that the pointer value is the address pointed to by the pointer. In a 32-bit program, the value of the pointer is
It is a 32-bit integer. Can an integer be directly assigned to the pointer as the pointer value? Just like
The following statement:
Unsigned int;
Type * PTR; // The type is int, Char, or structure type.
...
...
A = 20345686;
PTR = 20345686; // Our purpose is to point the pointer PTR to the address 20345686 (decimal
)
PTR = A; // Our purpose is to point the pointer PTR to the address 20345686 (decimal)
Compile it. The result shows that the last two statements are all incorrect. Then our goal cannot be achieved
? No, there are other methods:
Unsigned int;
Type * PTR; // The type is int, Char, or structure type.
...
...
A = a certain number, which must represent a valid address;
PTR = (type *) A; // Ha, this is OK.
Strictly speaking, the type * here is different from the type * in the pointer type conversion. Here (typ
E *) means to treat the value of the unsigned integer a as an address.
The value of a must represent a valid address. Otherwise, when you use PTR
Is invalid.

Think about whether or not we can take the address pointed to by the pointer as an integer. End
Yes. The following example shows how to take the value of a pointer as an integer and then
An integer is assigned to a pointer as an address:
Example 16:
Int A = 123, B;
Int * PTR = &;
Char * STR;
B = (INT) PTR; // take the pointer PTR value as an integer.
STR = (char *) B; // assign the value of this integer to the pointer STR as an address.

Now we know that we can take the pointer value as an integer or
Assign an integer as an address to a pointer.

Chapter 9. Pointer security issues

See the following example:
Example 17:
Char S = 'a ';
Int * PTR;
PTR = (int *) & S;
* PTR = 1298;
Pointer PTR is an int * type pointer, which points to the int type. It points to the address of S.
First address. In 32-bit programs, s occupies one byte, And the int type occupies four bytes. The last statement not only
This changes the size of one byte of S, and also the three byte adjacent to S's high address direction. These three
What are the bytes? Only the compiled program knows, but the program writer is unlikely to know. Maybe
These three bytes store very important data. Maybe these three bytes are exactly a piece of code of the program.
Because of your sloppy application of pointers, the values of these three bytes are changed! This will cause a collapse error.
Error.
Let's take another example:
Example 18:
1. Char;
2. Int * PTR = &;
...
...
3. PTR ++;
4. * PTR = 115;
This example can be fully compiled and executed. But do you see? 3rd Statement on Pointer PTR
After the auto-increment 1 operation, PTR points to a storage area adjacent to the high address direction of the shaping variable. This storage
What is in the partition? We don't know. It may be a very important data, or even a generation.
. The first sentence is to write a piece of data into this bucket! This is a serious error. Therefore
The programmer must know exactly where my Pointer Points.
When using pointers to access arrays, be sure not to go beyond the low-end and high-end boundaries of arrays. Otherwise
It will also cause similar errors.
In the forced type conversion of pointer: ptr1 = (type *) ptr2, if sizeof (ptr2 type) is large
In sizeof (ptr1 type), when ptr1 is used to access the bucket pointed to by ptr2
All. If sizeof (ptr2 type) is smaller than sizeof (ptr1 type), the pointer ptr1 is used.
It is not safe to access the bucket to which ptr2 points. As for why, the reader may come up with example 17.
Think, it should be clear.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.