将字符串文字分配给char *

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

可能重复: 如何摆脱deprecated conversion from string constant to ‘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[],并且可能存储在只读内存中,因此如果您尝试修改它,程序将崩溃.将非const指针指向它是一个坏主意.

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

发布评论

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

>www.elefans.com

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