calloc和realloc的使用以及二级指针作为函数参数的输入和输出
liebian365 2024-11-21 17:36 27 浏览 0 评论
1.calloc与realloc的使用
void *malloc(size_t size)
size -- 内存块的大小,以字节为单位
该函数返回一个指针 ,指向已分配大小的内存。如果请求失败,则返回 NULL。
void *realloc(void *ptr, size_t size)
ptr -- 指针指向一个要重新分配内存的内存块,该内存块之前是通过调用 malloc、calloc 或 realloc 进行分配内存的。如果为空指针,则会分配一个新的内存块,且函数返回一个指向它的指针。
size -- 内存块的新的大小,以字节为单位。如果大小为 0,且 ptr 指向一个已存在的内存块,则 ptr 所指向的内存块会被释放,并返回一个空指针。
该函数返回一个指针 ,指向重新分配大小的内存。如果请求失败,则返回 NULL。
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
static void test01()
{
//int* p = malloc(sizeof(int) * 10);//开辟出堆区的内存是未知数据
int* p = calloc(10, sizeof(int));//calloc会将堆区分配的内容初始化为0
for (int i = 0; i < 10; i++)
{
printf("%d\n", p[i]);
}
if (p!= NULL)
{
free(p);
p = NULL;
}
}
//realloc重新在堆区分配内存
/*
realloc分配的机制:如果比原来分配的内存大,有两种情况:
1.如果比原来的空间后足够大的空闲空间,
那么直接在后面继续开辟内存,返回原有的首地址
2.如果原来的空间后面没有足够大的空闲空间,
那么系统会直接分配一个新的空间来存放原有空间的数据,
同时将原有空间释放,返回新空间的首地址
*/
static void test02()
{
int* p = malloc(sizeof(int) * 10);
printf("%d\n", p);
for (int i = 0; i < 10; i++)
{
p[i] = i;
}
p = realloc(p, sizeof(int) * 20);
for (int i = 0; i < 20; i++)
{
printf("%d\n",p[i]);
}
printf("%d\n", p);
if (p != NULL)
{
free(p);
p = NULL;
}
}
int main01()
{
//test01();
test02();
return 0;
}
2.sscanf的使用
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
//1、%*s或%*d 跳过数据
static void test01()
{
char* str = "123abcd";
char buf[1024] = { 0 };
sscanf(str, "%*d%s", buf);//从str中读取字符串 忽略%d打印出%s 输出到buf中
printf("%s\n", buf);
}
static void test02()
{
char* str = "abcd12345";//在中间加空格或者\t都可以实现取出数字的效果
char buf[1024] = { 0 };
//sscanf(str, "%*s%s", buf);
sscanf(str, "%*[a-z]%s", buf);//忽略a~z
printf("%s\n", buf);
}
//2、%[width]s 读取指定宽度的数据
static void test03()
{
char* str = "1234abcd";
char buf[1024] = { 0 };
sscanf(str, "%6s", buf);
printf("%s\n", buf);
}
//3、%[a-z]匹配a~z中任意字符
static void test04()
{
char* str = "12345abcde";
char buf[1024] = { 0 };
sscanf(str, "%*d%[a-c]", buf);//忽略数组匹配a~c
printf("%s\n", buf);
}
//4、%[aBc]匹配a、B、c中的一员,贪婪性
static void test05()
{
char* str = "aabcde12345";
char buf[1024] = { 0 };
sscanf(str, "%[aBc]", buf);//匹配过程中只要有一个失败了,后续不再进行匹配
printf("%s\n", buf);//aa
}
//5、%[^a]匹配非a的任意字符,贪婪性
static void test06()
{
char* str = "abcde12345";
char buf[1024] = { 0 };
sscanf(str, "%[^c]", buf);
printf("%s\n", buf);//ab
}
//6、%[^a-z]读取除a~z以外的所有字符
static void test07()
{
char* str = "abcde12345";
char buf[1024] = { 0 };
sscanf(str, "%[^0-9]", buf);
printf("%s\n", buf);//abcde
}
//7、案例
static void test08()
{
char* ip = "127.0.0.1";
int num1 = 0;
int num2 = 0;
int num3 = 0;
int num4 = 0;
sscanf(ip, "%d.%d.%d.%d", &num1, &num2, &num3, &num4);
printf("%d\n", num1);
printf("%d\n", num2);
printf("%d\n", num3);
printf("%d\n", num4);
}
static void test09()
{
char* str = "abcde#longGG@12345";
char buf[1024] = { 0 };
sscanf(str, "%*[^#]#%[^@]", buf);
printf("%s\n", buf);
}
static void test10()
{
char* str = "helloworld@itcase.cn";
char buf1[1024] = { 0 };
char buf2[1024] = { 0 };
sscanf(str, "%[a-z]%*[@]%s", buf1, buf2);
printf("%s\n", buf1);//helloworld
printf("%s\n", buf2);//itcase.cn
}
int main02()
{
//test01();
//test02();
//test03();
//test04();
//test05();
//test06();
//test07();
//test08();
//test09();
test10();
return 0;
}
3.查找子串
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
int mystrcpy(char* str, char* substr)
{
int num = 0;
while (*str != '\0')
{
if (*str != *substr)
{
str++;
continue;
}
//创建临时指针
char* tmpstr = str;
char* tmpsubstr = substr;
while (*tmpsubstr != '/0')
{
if (*tmpstr != *tmpsubstr)
{
//匹配失败
str++;
num++;
break;
}
tmpstr++;
tmpsubstr++;
}
if (*tmpsubstr == '\0')
{
//匹配成功
return num;
}
}
return -1;
}
static void test01()
{
char* str = "abcdefghdnf";
int ret = mystrcpy(str, "dnf");
if (ret == -1)
{
printf("未找到子串\n");
}
else
{
printf("找到子串位置是:%d\n", ret);
}
}
int main03()
{
test01();
return 0;
}
4.const使用场景
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
struct person
{
char name[64];
int age;
int id;
double score;
};
//const使用场景:修饰函数中的形参,防止误操作
static void printperson(const struct person *p)
{
//p->age = 100;加入const之后编译器会检测误操作
printf("姓名:%s,年龄:%d,学号:%d,成绩:%d\n", p->name, p->age, p->id, p->score);
}
static void test01()
{
struct person p1 = {"张飒",22,01,78};
printperson(&p1);
printf("p1年龄:%d\n", p1.age);
}
int main05()
{
test01();
return 0;
}
5.二级指针作为函数参数的输入特性
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
//二级指针做函数参数的输入特性
//主调函数分配内存,被调函数使用
static printarr(int**parr,int len)
{
for (int i = 0; i < len; i++)
{
printf("%d\n", *parr[i]);
}
}
static void test01()
{
//在堆区分配内存
int** p = malloc(sizeof(int*) * 5);
//在栈区创建数据
int a1 = 10;
int a2 = 20;
int a3 = 30;
int a4 = 40;
int a5 = 50;
p[0] = &a1;
p[1] = &a2;
p[2] = &a3;
p[3] = &a4;
p[4] = &a5;
printarr(p, 5);
if (p != NULL)
{
free(p);
p = NULL;
}
}
static void test02()
{
//在栈区创建
int* parr[5];
for (int i = 0; i < 5; i++)
{
parr[i] = malloc(4);
*(parr[i]) = 100 + i;
}
int len = sizeof(parr) / sizeof(int*);
printarr(parr, len);
for (int i = 0; i < 5; i++)
{
if (parr[i] != NULL)
{
free(parr[i]);
parr[i] = NULL;
}
}
}
int main06()
{
//test01();
test02();
return 0;
}
6.二级指针作为函数参数的输出特性
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
static allocatespace(int** p)
{
int* arr = malloc(sizeof(int) * 10);
for(int i = 0; i < 10; i++)
{
arr[i] = i + 10;
}
*p = arr;
}
static void printarray(int**parr,int len)
{
for (int i = 0; i < 10; i++)
{
printf("%d\n", (*parr)[i]);
}
}
static void freespace(int**p)
{
if (*p != NULL)
{
free(*p);
*p = NULL;
}
}
static void test01()
{
int* p = NULL;
allocatespace(&p);
printarray(&p, 10);
freespace(&p);
}
int main07()
{
test01();
return 0;
}
7.二级指针文件读写
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
//获取文件的行数
int getFileLines(FILE* file)
{
if (file == NULL)
{
return -1;
}
char buf[1024]; //读取的数据存入到buf
int num = 0;
while (fgets(buf, 1024, file) != NULL)
{
num++;
//printf("%s", buf);
}
//将文件光标 置为文件首
fseek(file, 0, SEEK_SET);
return num;
}
//参数1 文件指针 参数2 有效函数 参数3 堆区数组
void readFileData(FILE* file, int len, char** pArray)
{
if (file == NULL)
{
return;
}
if (len <= 0)
{
return;
}
if (pArray == NULL)
{
return;
}
char buf[1024]; //读取的数据存入到buf
int index = 0;
while (fgets(buf, 1024, file) != NULL)
{
//buf中就是存放的每行的数据
/*
aaaaaaaaaa
bbbb
ccccc
*/
int currentLen = strlen(buf) + 1;
char* currentP = malloc(sizeof(char) * currentLen);
//将数据拷贝到堆区内存中
strcpy(currentP, buf);
pArray[index++] = currentP;
//清空缓冲区
memset(buf, 0, 1024);
}
}
void showFileData(char** pArray, int len)
{
for (int i = 0; i < len; i++)
{
printf("第 %d 行的数据为 %s", i + 1, pArray[i]);
}
}
void freeSpace(char** pArray, int len)
{
for (int i = 0; i < len; i++)
{
if (pArray[i] != NULL)
{
free(pArray[i]);
pArray[i] = NULL;
}
}
free(pArray);
pArray = NULL;
}
void test01()
{
FILE* file = fopen("f:/a.txt", "r");
if (file == NULL)
{
printf("文件打开失败\n");
return;
}
int len = getFileLines(file);
printf("文件的有效行数为:%d\n", len);
char** pArray = malloc(sizeof(char*) * len);
//将文件中的数据 读取后 放入到pArray中
readFileData(file, len, pArray);
//打印数据
showFileData(pArray, len);
//释放数据
freeSpace(pArray, len);
pArray = NULL;
//关闭文件
fclose(file);
file = NULL;
}
int main08()
{
test01();
system("pause");
return EXIT_SUCCESS;
}
8.按位取反、或、与、左移和右移
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
//1、按位取反~
static void test01()
{
int num = 2;
printf("~num=%d\n", ~num);//-3
//010按位取反 101原码
//101补码 110+1=111 最高位是符号位
}
//2、按位与
static void test02()
{
int num = 123;
if((num & 1) == 0)
{
printf("num为偶数\n");
}
else
{
printf("num为奇数\n");//奇
}
}
//3、按位或
static void test03()
{
int num1 = 5;
int num2 = 3;
printf("num1|num2=%d\n", num1 | num2);//7
}
//4、三种方式交换两个数字
static void test04()
{
int num1 = 10;
int num2 = 20;
//方式1
//int temp = num1;
//num1 = num2;
//num2 = temp;
//按位异或方式2
num1 = num1 ^ num2;
num2 = num1 ^ num2;
num1 = num1 ^ num2;
//不用临时变量实现两个数字交换
//num1 = num1 + num2;
//num2 = num1 - num2;
//num1 = num1 - num2;
printf("交换后\n");
printf("num1=%d\n", num1);
printf("num2=%d\n", num2);
}
//左移运算符
static void test05()
{
int num = 10;
printf("%d\n", num <<= 2);// <<n即乘以2的n次方
}
//右移运算符
static void test06()
{
int num = 10;
printf("%d\n", num >>= 1);// >>n即除以2的n次方
}
int main()
{
//test01();
//test02();
//test03();
//test04();
//test05();
test06();
return 0;
}
- 上一篇:彻底弄懂零拷贝、MMAP、堆外内存
- 下一篇:csapp之第10章:系统级I?O
相关推荐
- 深度解密epoll 如何工作的?(epoll基本处理流程)
-
epoll...
- 大乐透第19082期:头奖开出7注1000万分落六地 奖池41亿元
-
2019年7月17日晚开奖的体彩超级大乐透第19082期开奖号码为:前区06、18、20、21、31,后区03、04。本期大乐透前区号码五区比为1:0:3:0:1,二区和四区号码没有给出。当期前区和值...
- 【开奖】4月27日周六:福彩、体彩(2021年4月27日体彩开奖结果)
-
4月27日开奖福彩3D第2019110期:61222选5第2019110期:0812202122排列3第19110期:303排列5第19110期:30305大乐透第19047期:0304...
- “红狒狒”落户哈尔滨铁路局(哈尔滨铁路红肠)
-
这几天,“红人”“红狒狒”在牡丹江机务段可引起了不小的轰动,众粉丝争相与其拍照留念,在该段人气爆棚!“红狒狒”到底何许人也?“红狒狒”,中文名:和谐3D型电力机车;绰号:红狒狒、番茄;制造商:大连机...
- 2D、3D、2.5D,做游戏还是搞噱头?玩家都晕了
-
前言游戏类型就像某种潮流,一种流行罢,另一种接棒成为主流。前两年的新作大多以“开放世界”为标签,在追求纯沙盒的过程中打造出一些细致的分类,比如说“类GTA沙盒”。诚然,纯碎的沙盒游戏并不多见,业内只有...
- 《战神4》PC版宣传片发布 GTX 1070即可60帧畅玩
-
在今年10月的时候索尼PlayStation官方正式宣布圣莫尼卡2018年的《战神4》将于2022年1月14日推出PC版本,官方在今天公布了一段PC版宣传片,并且公开了游戏的配置需求。下面让我们一起来...
- 男星深情好丈夫形象崩塌,半夜搂美女坐大腿,举止亲密
-
近日,于晓光被拍到深夜在酒吧玩,结束后与一名女子一起上车离开。上车后,女子直接坐在了他腿上,他也顺势搂着美女,美女满脸笑容地坐在他腿上玩手机离开。可能有人会好奇,于晓光是谁呢?于晓光是韩国艺人秋瓷炫的...
- d3d12dll丢失怎么修复?d3d12dll加载失败怎么解决?
-
d3d12.dll丢失怎么修复?d3d12.dll加载失败怎么解决?很多朋友想要运行游戏的时候都会遇到这个问题,这种情况该怎么办呢?今天系统之家小编给朋友们讲讲具体的解决方法,操作其实还蛮简单的。...
- 许多玩家反馈《生化4RE》PC一直崩溃 无法进入游戏
-
今日(3月24日),卡普空《生化危机4:重制版》正式发售,然而有部分PC玩家遇到了游戏崩溃等问题。很多玩家在贴吧发帖称游戏遇到了严重的崩溃问题,且经常反复,报错代码普遍为FatalD3Derror...
- 微软正式推出适用于WSL Linux的D3D12 GPU视频加速技术
-
今天,微软正式向WindowsSubsystemforLinux(WSL)用户发布了Direct3D12GPU视频加速支持。在微软通过WSL允许在Linux下使用Open...
- 《怪物猎人:崛起》曙光系统报错“Fatal d3d error”的解决办法
-
《怪物猎人:崛起》曙光系统报错“Fatald3derror”的解决办法不少小伙伴反应《怪物猎人:崛起》DLC曙光预载以后打不开游戏,出现了Fatald3derror类似的错误代码,这类问题的解...
- Mac+双屏,前端程序员的专业配置 - Loctek 乐歌 D3D 双屏电脑显示器支架
-
做FE也有一段日子了,电脑屏幕每天在设计稿、浏览器、IDE、即时通讯工具、Terminal、邮箱之间切换。虽然mac的工作区带来了很多灵活,但是依然略显不足。于是入手支架,把公司配的电脑和显示器发挥起...
- RPC 的原理和简单使用(rpc详解)
-
RPC的概念RPC,RemoteProcedureCall,翻译成中文就是远程过程调用,是一种进程间通信方式。它允许程序调用另一个地址空间(通常是共享网络的另一台机器上)的过程或函数。在调用的...
- 大厂开源的golang微服务rpc框架 — kitex
-
提前rpc估计所有的开发同学都知道,不知道的也无所谓,毕竟我也好几年没用了,今天带大家在复习一下。RPC(RemoteProcedureCall):远程过程调用,...
- 干货!一文掌握Protobuf所有语言所有用法,快收藏
-
说实话,Protobuf这个库,让人相见时难别亦难,东风无力百花残,每次等到要用它的时候,总感觉还没有完全掌握它的用法,而实际上等去百度或者谷歌的时候,教程都是多么的凌乱不堪。学会它,最直接关系到的,...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- wireshark怎么抓包 (75)
- qt sleep (64)
- cs1.6指令代码大全 (55)
- factory-method (60)
- sqlite3_bind_blob (52)
- hibernate update (63)
- c++ base64 (70)
- nc 命令 (52)
- wm_close (51)
- epollin (51)
- sqlca.sqlcode (57)
- lua ipairs (60)
- tv_usec (64)
- 命令行进入文件夹 (53)
- postgresql array (57)
- statfs函数 (57)
- .project文件 (54)
- lua require (56)
- for_each (67)
- c#工厂模式 (57)
- wxsqlite3 (66)
- dmesg -c (58)
- fopen参数 (53)
- tar -zxvf -c (55)
- 速递查询 (52)