gpt4 book ai didi

c++ - 我可以将 double 分配给字符串吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:15:39 27 4
gpt4 key购买 nike

根据 this页面中,有五种方法可以为字符串赋值:

          string (1) string& operator= (const string& str);
c-string (2) string& operator= (const char* s);
character (3) string& operator= (char c);
initializer list (4) string& operator= (initializer_list<char> il);
move (5) string& operator= (string&& str) noexcept;

那我为什么可以编译下面的文字呢?编译器使用了哪些选项?

#include <iostream>
#include <string>

int main()
{
std::string s;
double d = 1.0;
s = d;
std::cout << s << std::endl;
}

这不仅仅是一个毫无意义的问题 - 我花了很长时间试图在我的代码中找到这个 s = d 赋值。当然应该是 s = std::to_string(d)

编译器:GCC 4.8.4。

最佳答案

您的代码等同于此代码:

#include <iostream>
#include <string>

int main()
{
std::string s;
double d = 1.0;
char j = d;
s = j;
std::cout << s << std::endl;
}

因此您将输出一个 \1 后跟一个行结尾。

如果您使用的是 G++,请指定 -Wconversion 以捕获此类内容。

f.cpp: In function ‘int main()’:
f.cpp:8:7: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wfloat-conversion]
s = d;

关于c++ - 我可以将 double 分配给字符串吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42169164/

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