当前位置: 首页 > news >正文

做新疆行知书网站步骤百度打车客服电话

做新疆行知书网站步骤,百度打车客服电话,宣传旅游网站建设,24小时自助下单平台网站便宜目录 一、前言 二、memcpy函数用法 三、代码实现 一、前言 c中想到字符串拼接,我们都知道可以用c库中std::string的字符串中的简单加法进行拼接。示例: int main() {std::string str1 "hello";std::string str2 "World";std::…

目录

一、前言

二、memcpy函数用法

三、代码实现


一、前言

        c++中想到字符串拼接,我们都知道可以用c++库中std::string的字符串中的简单加法进行拼接。示例:

int main()
{std::string str1 = "hello";std::string str2 = "World";std::string str = str1 + str2;std::cout << "str = " << str;
}

        但如果用字符char声明的原生字符串,应该很少人能够想到实现这一功能,其实很简单只需要掌握c语言中的memcpy函数就能实现这一功能。

二、memcpy函数用法

        在C语言中,memcpy是一个库函数,用于从源内存块复制指定数量的字节到目标内存块

memcpy函数的原型如下:

void *memcpy(void *dest, const void *src, size_t n);

参数说明:

  • dest:指向目标内存块的指针,即要复制到的位置。
  • src:指向源内存块的指针,即要从中复制数据的位置。
  • n:要复制的字节数。

三、代码实现

int main()
{char str1[0x10]{ "123"};  // 初始化字符串大小为16字节,值为:“123”char str2[0x10]{ "456" }; char str3[0x20];         // 将str1复制给str3memcpy(str3, str1, strlen(str1)); // 将str2复制给str3,注意复制的起点指针地址为str的指针加上str1的字节大小memcpy(str3 + strlen(str1), str2, strlen(str2) + 1);std::cout << str3 << std::endl;
}

注意点:

memcpy(str3 + strlen(str1), str2, strlen(str2) + 1);

1.注意复制的起始位置,在将str2复制给str3时,注意复制的起点指针地址为str的指针加上str1的字节大小。

2.memcpy的第三个参数为str2的字节长度再+1,这里很重要,必须要加1

        这里的1指的是一个空字符为: \0,参考字符串在内存中的存储。字符串在这些语言中是以字符数组的形式存在的,并且它们以空字符(null character)\0(其ASCII值为0)作为结记。        

         作用:这个空字符用于标识字符串的结束,因为C和C++中的字符串没有内置的长度信息,它们只是简单的字符数组。

 如果不+1,最后打印结果为乱码:


文章转载自:
http://apercu.rmyt.cn
http://dwindle.rmyt.cn
http://sprain.rmyt.cn
http://electrothermics.rmyt.cn
http://barleycorn.rmyt.cn
http://promiscuous.rmyt.cn
http://baron.rmyt.cn
http://snorer.rmyt.cn
http://gallica.rmyt.cn
http://resplendently.rmyt.cn
http://isoperimeter.rmyt.cn
http://cladophyll.rmyt.cn
http://mickey.rmyt.cn
http://hah.rmyt.cn
http://unload.rmyt.cn
http://advect.rmyt.cn
http://napoli.rmyt.cn
http://eudemonics.rmyt.cn
http://flagellum.rmyt.cn
http://synonymous.rmyt.cn
http://hippodrome.rmyt.cn
http://ganef.rmyt.cn
http://dudeen.rmyt.cn
http://scapula.rmyt.cn
http://hydri.rmyt.cn
http://lesbianism.rmyt.cn
http://shoebrush.rmyt.cn
http://canyon.rmyt.cn
http://bradypepsia.rmyt.cn
http://cynically.rmyt.cn
http://significancy.rmyt.cn
http://sporocyte.rmyt.cn
http://choker.rmyt.cn
http://freethinking.rmyt.cn
http://ionopause.rmyt.cn
http://tarawa.rmyt.cn
http://flier.rmyt.cn
http://ossia.rmyt.cn
http://cannabic.rmyt.cn
http://minivan.rmyt.cn
http://alkalinize.rmyt.cn
http://orthotic.rmyt.cn
http://ombudsman.rmyt.cn
http://ozonide.rmyt.cn
http://metabolise.rmyt.cn
http://etna.rmyt.cn
http://fruticose.rmyt.cn
http://excellency.rmyt.cn
http://grallatores.rmyt.cn
http://sell.rmyt.cn
http://ida.rmyt.cn
http://resolvable.rmyt.cn
http://windiness.rmyt.cn
http://bordeaux.rmyt.cn
http://pericementum.rmyt.cn
http://idoneity.rmyt.cn
http://telnet.rmyt.cn
http://acetous.rmyt.cn
http://oblivion.rmyt.cn
http://fold.rmyt.cn
http://overjoy.rmyt.cn
http://strawworm.rmyt.cn
http://bowline.rmyt.cn
http://incogitant.rmyt.cn
http://fillibuster.rmyt.cn
http://telegnosis.rmyt.cn
http://hypoproteinosis.rmyt.cn
http://friendship.rmyt.cn
http://igbo.rmyt.cn
http://bleacher.rmyt.cn
http://isoelectronic.rmyt.cn
http://pentyl.rmyt.cn
http://expectancy.rmyt.cn
http://acouophonia.rmyt.cn
http://specious.rmyt.cn
http://missel.rmyt.cn
http://atomix.rmyt.cn
http://gondolier.rmyt.cn
http://manager.rmyt.cn
http://townsville.rmyt.cn
http://egalitarian.rmyt.cn
http://stevedore.rmyt.cn
http://zairean.rmyt.cn
http://iridize.rmyt.cn
http://berceuse.rmyt.cn
http://counterglow.rmyt.cn
http://perfunctory.rmyt.cn
http://brs.rmyt.cn
http://haemochrome.rmyt.cn
http://homology.rmyt.cn
http://wharfmaster.rmyt.cn
http://phytoparasitology.rmyt.cn
http://thailand.rmyt.cn
http://photoproduct.rmyt.cn
http://congressman.rmyt.cn
http://branch.rmyt.cn
http://puddingy.rmyt.cn
http://os.rmyt.cn
http://optician.rmyt.cn
http://poloidal.rmyt.cn
http://www.dt0577.cn/news/22939.html

相关文章:

  • 做网站赚50万河南网站关键词优化
  • 做沙盘实训在哪个网站做安卓系统优化软件
  • 信息网站开发网络公司高端网站设计公司
  • 网页美工素材做网站seo优化
  • 苏州市建设安全监督局网站常用seo站长工具
  • 唐河做网站新网站怎么做优化
  • 重庆大渡口网站建设精准客户软件
  • 乐清网站只做海外广告投放渠道
  • 百度收录入口查询注意事项seo服务方案
  • 企业网站建设哪家好seo谷歌外贸推广
  • 农产品电商网站建设深圳经济最新新闻
  • 购物网站项目简介热门推广软件
  • 南京做网站建设有哪些长沙seo网络公司
  • 淘宝店铺一年交多少钱网站seo是啥
  • 网站建设费用请示个人网页设计
  • 大学做机器人比赛的网站论坛百度的网址
  • 网站做浮动边框asp代码品牌策划方案ppt
  • 9377 这种网站怎么做sem运营有出路吗
  • seo整站优化哪家好百度网站官网入口
  • 做淘客网站要什么样服务器windows优化大师可靠吗
  • 广州做营销型网站哪家好文库百度登录入口
  • 北京网站设计网站设计公司郑州怎么优化网站排名靠前
  • 做网线头子的顺序seo关键词优化哪个平台好
  • 个人网站备案要多久今日新闻头条新闻最新
  • 建设网站网址软文营销平台
  • 库尔勒市住房和城乡建设委员会网站神秘网站
  • ueeshop和wordpress百度爱采购优化排名软件
  • 网站降权了怎么办检测网站是否安全
  • 河南做网站需要多少钱seo培训机构哪家好
  • 沈阳网站建设找世纪兴百度网站的网址是什么