码迷,mamicode.com
首页 > 其他好文 > 详细

warning: deprecated conversion from string constant to ‘char*’

时间:2020-05-08 13:05:50      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:字符串   http   info   src   htm   html   传递   blog   警告   

技术图片

原因:

函数的形参原型为char *str,表示传递一个字符串的地址过来,并且可以通过传递过来的地址来修改其中的值;但是我传递的只不过是一个字符串常量,所以弹出了这个警告

而加了const之后:

改为const char *str,因为有const修饰符,变代表指针s指向的值不能被修改,符合字符串常量不能被改变的特性;

参考:https://www.cnblogs.com/tolic/p/7142268.html

ps:怖い!マジ怖い!video

 

warning: deprecated conversion from string constant to ‘char*’

标签:字符串   http   info   src   htm   html   传递   blog   警告   

原文地址:https://www.cnblogs.com/modiqiang/p/12849635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!