表达式必须是可修改的 L 值

发布于 2024-11-07 04:31:46 字数 207 浏览 0 评论 0原文

我这里有 char text[60];

然后我在 if: 中执行:

if(number == 2)
  text = "awesome";
else
  text = "you fail";

它总是说表达式必须是可修改的 L 值。

I have here char text[60];

Then I do in an if:

if(number == 2)
  text = "awesome";
else
  text = "you fail";

and it always said expression must be a modifiable L-value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2024-11-14 04:31:46

lvalue 表示“左值”——它应该是可赋值的。您无法更改 text 的值,因为它是一个数组,而不是指针。

要么将其声明为 char 指针(在这种情况下最好将其声明为 const char* ):

const char *text;
if(number == 2) 
    text = "awesome"; 
else 
    text = "you fail";

或者使用 strcpy:

char text[60];
if(number == 2) 
    strcpy(text, "awesome"); 
else 
    strcpy(text, "you fail");

lvalue means "left value" -- it should be assignable. You cannot change the value of text since it is an array, not a pointer.

Either declare it as char pointer (in this case it's better to declare it as const char*):

const char *text;
if(number == 2) 
    text = "awesome"; 
else 
    text = "you fail";

Or use strcpy:

char text[60];
if(number == 2) 
    strcpy(text, "awesome"); 
else 
    strcpy(text, "you fail");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文