当前位置:网站首页>C language advanced pointer Full Version (array pointer, pointer array discrimination, function pointer)
C language advanced pointer Full Version (array pointer, pointer array discrimination, function pointer)
2022-07-06 10:39:00 【YRedd22】
Important concepts of pointer :
A pointer is a variable , It's used to store the address , The address uniquely identifies a piece of memory space .
The size of the pointer is fixed 4/8 Bytes (32 Bit platform /64 Bit platform ).
Pointers are typed , The type of pointer determines the type of pointer +- Integer step size , The permission of pointer dereference operation .
The operation of the pointer .
1. Character pointer


Code char* pstr = "hello bit."; It's very easy for students to think it's a string hello bit Put it in the character pointer pstr in
了 , however / The essence is to put the string hello bit. The address of the first character is put in pstr in .


2. Pointer array

Take a look at the application of several pointer arrays :



3. Array pointer
Array pointers are pointers


There are two exceptions when the array name is the first element address :



If the address passed by the parameter is :

The use of array pointers :

// Array name arr, Represents the address of the first element
// But the first element of a two-dimensional array is the first row of a two-dimensional array
// So the message here is arr, It's actually equivalent to the address on the first line , Is the address of a one-dimensional array
// You can use an array pointer to receive
Let's take a look at the meaning of the following code :

4. Array parameters 、 Pointer parameter
4.1 One dimensional array parameters

4.2 Two dimensional array parameters

4.3 First level pointer parameter transfer


4.4 The secondary pointer transmits parameters


5. A function pointer

The output is two addresses , These two addresses are test Address of function .
The address of our function should be saved , How to keep ?

Call an instance of a function through a function pointer :


Read two interesting pieces of code :


6. Function pointer array ‘
Let's start with a piece of code :

How to simplify ? Make it into the form of function pointer array

Using examples :
Design a counter :
1. General method :

2. adopt Function pointer array improvement A simple way :

7. A pointer to an array of function pointers
The pointer to the array of function pointers is a The pointer
The pointer points to a Array , The elements of the array are A function pointer

8. Callback function
A callback function is a function called through a function pointer . If you put a pointer to a function ( Address ) Pass as a parameter to another
A function , When this pointer is used to call the function it points to , Let's just say this is a callback function . The callback function is not created by the
The implementer of the function calls , It's called by another party when a particular event or condition occurs , For the event or
Condition response .
First demonstrate qsort Use of functions :

So let's see first void* base The role of

size_t num It represents the number of elements to be sorted
size_t width Represents the size of an element , Unit is byte
notes :size_t Represents an unsigned integer




Next we use qsort Function to write a bubble sort by yourself :
notes :Swap Notice in the function width Can't ignore , Also note that after each byte is compared, one byte must be skipped backward
Also note that this function uses the idea of callback function
9. Pointer and array written test question analysis
subject :

Running results :

Analysis of the answer :

subject :

Running results :

analysis :

subject :

Analysis of the answer :

subject :

Running results :

Analysis of the answer :
subject :

Analysis of the answer :

subject :

Running results :

Analysis of the answer :

subject :

Analysis of the answer :

subject :

Running results :

Analysis of the answer :

summary :
The meaning of array names :
1. sizeof( Array name ), The array name here represents the entire array , It calculates the size of the entire array .
2. & Array name , The array name here represents the entire array , It takes out the address of the entire array .
3. In addition, all array names represent the address of the first element .
4.strlen What I want is an address , Count backwards from the address passed by the parameter , until \0 Location ,\0 As many characters as there are before
5. The array name of a two-dimensional array represents the address of the first element , But the address of the first element here refers to the address of the first line ;a[0] In a two-dimensional array, the array name in the first row
Example :
int a[3][4];
The array name of the two-dimensional array is a; a- The address of the first element of a two-dimensional array ( first line ) The address of
The array name in the first row is a[0]; a[0] Represents the address of the first element in the first line
The array name in the second line is a[1]; a[1] Represents the address of the first element in the second line
The array name in the third line is a[2]; a[2] Represents the address of the first element in the third line
sizeof(a) &a
sizeof(a[0]) &a[0]
sizeof(a[1]) &a[1]
sizeof(a[2]) &a[2] The array names of the above four cases all represent the whole array
10. Pointer written test questions

Analysis results :
subject :

Analysis results : It's important to be careful here +1 What on earth is it +1, Pay attention to the conversion of types after forced type conversion

subject :

Analysis results :

Running results :
subject :

Analysis results :

a[0] Is the array name in the first row , A separate a[0] Represents the address of the first element
subject :
Result analysis :
subject :
Result analysis :

subject :
Result analysis :
there char** How to understand ?
char* *pa;
In front of a char* Express ++ Will skip a char* type ,*pa Express pa It's a pointer
subject :

Result analysis :


Running results :
边栏推荐
- C语言标准的发展
- [paper reading notes] - cryptographic analysis of short RSA secret exponents
- Record the first JDBC
- 该不会还有人不懂用C语言写扫雷游戏吧
- Valentine's Day is coming, are you still worried about eating dog food? Teach you to make a confession wall hand in hand. Express your love to the person you want
- CSDN-NLP:基于技能树和弱监督学习的博文难度等级分类 (一)
- Timestamp with implicit default value is deprecated error in MySQL 5.6
- Implement sending post request with form data parameter
- MySQL28-数据库的设计规范
- Moteur de stockage mysql23
猜你喜欢

基于Pytorch的LSTM实战160万条评论情感分类

Win10: how to modify the priority of dual network cards?

API learning of OpenGL (2003) gl_ TEXTURE_ WRAP_ S GL_ TEXTURE_ WRAP_ T

Moteur de stockage mysql23

The underlying logical architecture of MySQL

Mysql30 transaction Basics

MySQL32-锁

Isn't there anyone who doesn't know how to write mine sweeping games in C language

MySQL Real Time Optimization Master 04 discute de ce qu'est binlog en mettant à jour le processus d'exécution des déclarations dans le moteur de stockage InnoDB.

Use JUnit unit test & transaction usage
随机推荐
Copy constructor template and copy assignment operator template
CSDN问答标签技能树(二) —— 效果优化
[untitled]
Mysql25 index creation and design principles
Security design verification of API interface: ticket, signature, timestamp
基于Pytorch的LSTM实战160万条评论情感分类
高并发系统的限流方案研究,其实限流实现也不复杂
MNIST implementation using pytoch in jupyter notebook
MySQL combat optimization expert 05 production experience: how to plan the database machine configuration in the real production environment?
[paper reading notes] - cryptographic analysis of short RSA secret exponents
Use of dataset of pytorch
Mysql27 index optimization and query optimization
MySQL25-索引的创建与设计原则
CSDN问答标签技能树(五) —— 云原生技能树
MySQL實戰優化高手04 借著更新語句在InnoDB存儲引擎中的執行流程,聊聊binlog是什麼?
ZABBIX introduction and installation
[after reading the series] how to realize app automation without programming (automatically start Kwai APP)
Moteur de stockage mysql23
Mysql28 database design specification
CSDN博文摘要(一) —— 一个简单的初版实现