gpt4 book ai didi

c++ - '初始化' : truncation from 'int' to 'char'

转载 作者:行者123 更新时间:2023-11-28 00:36:22 24 4
gpt4 key购买 nike

#include "stdafx.h"
#include <iostream>
int main()
{
using namespace std;
char x = 'Game';
char y = x;
char z=y;
char z ='Play';
cout << z << endl;
cout << x << endl;
}

我只是 C++ 的初学者,使用的是 Visual C++ 2012。当我编译上面的代码时,出现错误,“truncation from 'int' to 'char'”。谁能告诉我应该怎么做?

最佳答案

你最好只使用 std::string

std::string x = "Game";
cout << x << endl;

您必须使用 " 而不是单引号。单引号用于表示单个 char 而不是数组

关于c++ - '初始化' : truncation from 'int' to 'char' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20797979/

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