std :: lexical_cast-有这样的事情吗?


Answers:


91

仅部分。

C ++ 11<string>具有std::to_string内置类型:

[n3290: 21.5/7]:

string to_string(int val);
string to_string(unsigned val);
string to_string(long val);
string to_string(unsigned long val);
string to_string(long long val);
string to_string(unsigned long long val);
string to_string(float val);
string to_string(double val);
string to_string(long double val);

返回:每个函数返回一个string保持,将通过调用来产生其自变量的值的字符表示对象sprintf(buf, fmt, val)与一个格式说明"%d""%u""%ld""%lu""%lld""%llu""%f""%f",或"%Lf",分别,其中buf指定具有足够的尺寸的内部字符缓冲区。

还有其他一些方法:

[n3290: 21.5/1, 21.5/4]:

int stoi(const string& str, size_t *idx = 0, int base = 10);
long stol(const string& str, size_t *idx = 0, int base = 10);
unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
long long stoll(const string& str, size_t *idx = 0, int base = 10);
unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
float stof(const string& str, size_t *idx = 0);
double stod(const string& str, size_t *idx = 0);
long double stold(const string& str, size_t *idx = 0);

但是,没有任何泛型可以使用(至少要等到TR2才能使用!),而在C ++ 03中则什么也没有。


2
嗡嗡声,实际上有很多stoi朋友:)
Matthieu M.

3
@mcheema:然后是stroustrup.com/C++11FAQ.html#delegating-ctor。他的意思是Boost,或者为了提出观点而将其用作任意抽象,或者他错了。
Lightness Races in Orbit

2
@mcheema:我们所有人都有兴趣传播良好的编码风格做法,但这并没有使他们变得更加主观!
Lightness Races in Orbit

3
@mcheema记得Stroustrup对使用粗斜体比例字体进行编码的沉迷,我认为没有人能认真谈论过他的代码样式。*玩笑*
polkovnikov.ph 2013年

1
@LightnessRacesinOrbit我再也没有听到关于它成为技术规范的喧声。它死
Jonathan Mee


11

没有std :: lexical_cast,但是您始终可以使用stringstreams做类似的事情:

template <typename T>
T lexical_cast(const std::string& str)
{
    T var;
    std::istringstream iss;
    iss.str(str);
    iss >> var;
    // deal with any error bits that may have been set on the stream
    return var;
}

3
谢谢,但是那将比boost :: lexical_cast还要慢
smallB 2011年

4
基于流的解决方案不会像snprintf一样快,但是您没有在问题中提到性能问题。
卢克

12
性能始终是一个问题,但绝不是唯一的问题。简单性,清晰度,正确性和可维护性也非常重要。我不会在紧缩的循环中使用上面的代码,但是对于其他情况可能很好。关于SO性能的一个常见问题是,如果您已经配置了代码,并发现牺牲其他问题是值得的:)
luke

8
如果最终使用lexical_cast<string>(string)此命令,则只会返回第一个单词,而不返回您传入的内容。(您可以在模板化函数或其他功能中使用它,而不能直接使用。)需要注意的地方。
tmandry

2
可以通过将其设置为iss静态来
MM


5

如果您不希望升压,那么一个名为fmt的轻量级库将实现以下内容:

// Works with all the C++11 features and AFAIK faster then boost or standard c++11
std::string string_num = fmt::format_int(123456789).str(); // or .c_str()

官方页面上有更多示例。

按位置访问参数:

format("{0}, {1}, {2}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{}, {}, {}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{2}, {1}, {0}", 'a', 'b', 'c');
// Result: "c, b, a"
format("{0}{1}{0}", "abra", "cad");  // arguments' indices can be repeated
// Result: "abracadabra"

对齐文本并指定宽度:

format("{:<30}", "left aligned");
// Result: "left aligned                  "
format("{:>30}", "right aligned");
// Result: "                 right aligned"
format("{:^30}", "centered");
// Result: "           centered           "
format("{:*^30}", "centered");  // use '*' as a fill char
// Result: "***********centered***********"

替换%+ f,%-f和%f并指定一个符号:

format("{:+f}; {:+f}", 3.14, -3.14);  // show it always
// Result: "+3.140000; -3.140000"
format("{: f}; {: f}", 3.14, -3.14);  // show a space for positive numbers
// Result: " 3.140000; -3.140000"
format("{:-f}; {:-f}", 3.14, -3.14);  // show only the minus -- same as '{:f}; {:f}'
// Result: "3.140000; -3.140000"

替换%x和%o并将值转换为不同的基数:

format("int: {0:d};  hex: {0:x};  oct: {0:o}; bin: {0:b}", 42);
// Result: "int: 42;  hex: 2a;  oct: 52; bin: 101010"
// with 0x or 0 or 0b as prefix:
format("int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}", 42);
// Result: "int: 42;  hex: 0x2a;  oct: 052;  bin: 0b101010"

我非常喜欢该fmt库,并且希望看到它的使用得到促进。fmt,但是只会执行到字符串的转换。(现在,它比我见过的任何其他C ++库都更好。)fmt不会 执行lexical_cast或std :: stoxyz函数执行的字符串转换。
菲尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.