也许这是一个愚蠢的问题,但是有什么方法可以将布尔值转换为字符串,以使1变为“ true”而0变为“ false”?我可以只使用if语句,但是很高兴知道是否可以使用语言或标准库来执行此操作。另外,我是一个学徒。:)
也许这是一个愚蠢的问题,但是有什么方法可以将布尔值转换为字符串,以使1变为“ true”而0变为“ false”?我可以只使用if语句,但是很高兴知道是否可以使用语言或标准库来执行此操作。另外,我是一个学徒。:)
Answers:
如何使用C ++语言本身?
bool t = true;
bool f = false;
std::cout << std::noboolalpha << t << " == " << std::boolalpha << t << std::endl;
std::cout << std::noboolalpha << f << " == " << std::boolalpha << f << std::endl;
更新:
如果你想超过4行代码没有任何控制台输出,请到cppreference.com的页面谈论std::boolalpha
和std::noboolalpha
你显示控制台输出,并详细解释了该API。
另外使用 std::boolalpha
会修改的全局状态std::cout
,您可能需要恢复原始行为,请转到此处以获取有关恢复的状态的更多信息std::cout
。
std::string str
然后将转换结果保存到该变量中。
我们在谈论C ++对吗?我们到底为什么还在使用宏!
C ++内联函数为您提供与宏相同的速度,并具有类型安全性和参数评估的额外好处(这避免了Rodney和dwj提到的问题。
inline const char * const BoolToString(bool b)
{
return b ? "true" : "false";
}
除此之外,我还有其他一些困扰,尤其是对于公认的答案:)
// this is used in C, not C++. if you want to use printf, instead include <cstdio>
//#include <stdio.h>
// instead you should use the iostream libs
#include <iostream>
// not only is this a C include, it's totally unnecessary!
//#include <stdarg.h>
// Macros - not type-safe, has side-effects. Use inline functions instead
//#define BOOL_STR(b) (b?"true":"false")
inline const char * const BoolToString(bool b)
{
return b ? "true" : "false";
}
int main (int argc, char const *argv[]) {
bool alpha = true;
// printf? that's C, not C++
//printf( BOOL_STR(alpha) );
// use the iostream functionality
std::cout << BoolToString(alpha);
return 0;
}
干杯:)
@DrPizza:为了简单起见,包含了整个boost库吗?你一定在开玩笑?
string
如果将“ true”和“ false”的字符串常量存储在静态const变量中,则可以对此进行改进。
cout << (bool_x ? "true": "false") << endl;
C ++具有适当的字符串,因此您不妨使用它们。它们在标准标题字符串中。#include <string>来使用它们。没有更多的strcat / strcpy缓冲区溢出;不再缺少空终止符;不再麻烦的手动内存管理;具有正确值语义的正确计数字符串。
C ++也能够将布尔转换为人类可读的表示形式。之前我们在iostream示例中看到了提示,但由于它只能将文本放到控制台(或使用fstreams,一个文件),因此它们有一定的局限性。幸运的是,C ++的设计者并不是白痴。我们还提供了不由控制台或文件支持的iostream,而是由自动管理的字符串缓冲区支持的iostream。它们称为字符串流。#include <sstream>来获取它们。然后我们可以说:
std::string bool_as_text(bool b)
{
std::stringstream converter;
converter << std::boolalpha << b; // flag boolalpha calls converter.setf(std::ios_base::boolalpha)
return converter.str();
}
当然,我们实际上并不想输入所有内容。幸运的是,C ++还有一个方便的第三方库,名为Boost,可以在这里帮助我们。Boost有一个很好的函数,叫做lexical_cast。我们可以这样使用它:
boost::lexical_cast<std::string>(my_bool)
现在,可以说这比某些宏要高。stringstreams处理您可能不关心的语言环境,并创建一个动态字符串(带有内存分配),而宏可以产生一个文字字符串,从而避免了这种情况。但另一方面,stringstream方法可用于可打印表示形式和内部表示形式之间的大量转换。您可以将它们向后运行;例如,boost :: lexical_cast <bool>(“ true”)做正确的事情。您可以将它们与数字一起使用,实际上也可以与格式正确的I / O运算符一起使用。因此它们非常通用且有用。
并且如果所有这些之后,您的性能分析和基准测试表明lexical_casts是不可接受的瓶颈,那么您就应该考虑做一些宏观恐怖了。
这应该很好:
const char* bool_cast(const bool b) {
return b ? "true" : "false";
}
但是,如果您想做更多C ++式的操作:
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
string bool_cast(const bool b) {
ostringstream ss;
ss << boolalpha << b;
return ss.str();
}
int main() {
cout << bool_cast(true) << "\n";
cout << bool_cast(false) << "\n";
}
我在printf中使用三元是这样的:
printf("%s\n", b?"true":"false");
如果您将其宏化:
B2S(b) ((b)?"true":"false")
那么您需要确保您传递的'b'
任何内容都没有任何副作用。并且不要忘记括号,'b'
因为您可能会遇到编译错误。
这篇文章很老,但是现在您可以使用std::to_string
来将很多变量转换为std::string
。
http://en.cppreference.com/w/cpp/string/basic_string/to_string
用于boolalpha
将bool打印为字符串。
std::cout << std::boolalpha << b << endl;
std::cout << std::noboolalpha << b << endl;
我同意宏可能是最合适的。我只是整理了一个测试用例(相信我,我对C / C ++不好,但这听起来很有趣):
#include <stdio.h>
#include <stdarg.h>
#define BOOL_STR(b) (b?"true":"false")
int main (int argc, char const *argv[]) {
bool alpha = true;
printf( BOOL_STR(alpha) );
return 0;
}