将字符串文字分配给 char*

编程入门 行业动态 更新时间:2024-10-24 14:23:53
本文介绍了将字符串文字分配给 char*的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

可能重复:如何摆脱不推荐将字符串常量转换为 'char*' GCC 中的警告?

Possible Duplicate: How to get rid of deprecated conversion from string constant to ‘char*’ warnings in GCC?

这个作业:

char *pc1 = "test string";

给我这个警告:

警告:不推荐将字符串常量转换为 'char*'

warning: deprecated conversion from string constant to 'char*'

虽然这个看起来不错:

char *pc2 = (char*)("test string");

这是一种真正更好的方法吗?

Is this one a really better way to proceed?

注意:由于其他原因,我不能使用 const char*.

Notes: for other reasons I cannot use a const char*.

推荐答案

字符串字面量是 C++ 中的 const char[],可能存储在只读内存中,因此程序会崩溃如果您尝试修改它.将非常量指针指向它是个坏主意.

A string literal is a const char[] in C++, and may be stored in read-only memory so your program will crash if you try to modify it. Pointing a non-const pointer at it is a bad idea.

更多推荐

将字符串文字分配给 char*

本文发布于:2023-07-28 14:09:23,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1231637.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:字符串   文字   char

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!