gpt4 book ai didi

c++ - 使用 char[] 创建字符串

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:17 24 4
gpt4 key购买 nike

#include <iostream>

using namespace std;

int main()
{
char strin[206];

strin = "sds";
cout<<strin;
}

为什么会出现此错误?

error: incompatible types in assignment of 'const char [4]' to 'char [206]' //on line strin = "sds"

我正在关注 this初学者教程

最佳答案

错误来自于您试图将一个数组分配给另一个数组。赋值运算符不能那样做;您必须使用 strcpy()std::copy() 复制数组。

但是,既然你想在 C++ 中工作,你真的应该使用 std::string 而不是 char[] 来存储字符串。

关于c++ - 使用 char[] 创建字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15897566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com