int 和 string 之间的隐式类型转换
implict type conversion between int and string
如何防止 int 和 std::string 之间的这种隐式类型转换,这是非常容易出错的。
这是代码。
#include <iostream>
#include <string>
using namespace std;
int main() {
string s="string";
s = 123456789; //assign a int value to std::string
cout << s;
// your code goes here
return 0;
}
上面的代码可以在没有警告的情况下编译,结果显然不是编码器的意图。这可以避免吗?
更新:如果设置了-Wall
标志,123456789
将导致溢出警告。但是如果我改成s = 98
,就没有警告了。但我实际上希望字符串是字符串 98
,而不是 ascii b
字符。那么如何预防呢?
据我了解,如果发生此类情况,您会希望收到警告。为此,您应该启用所有警告。编译时添加 -Wall -Wextra
标志。
但是,在这种特殊情况下您不需要这些标志。如果您没有禁用警告,您应该会收到 implicit type conversion
警告。
如评论中所述,要针对这种情况启用警告,您可以使用 -Wconstant-conversion
标志。
如何防止 int 和 std::string 之间的这种隐式类型转换,这是非常容易出错的。 这是代码。
#include <iostream>
#include <string>
using namespace std;
int main() {
string s="string";
s = 123456789; //assign a int value to std::string
cout << s;
// your code goes here
return 0;
}
上面的代码可以在没有警告的情况下编译,结果显然不是编码器的意图。这可以避免吗?
更新:如果设置了-Wall
标志,123456789
将导致溢出警告。但是如果我改成s = 98
,就没有警告了。但我实际上希望字符串是字符串 98
,而不是 ascii b
字符。那么如何预防呢?
据我了解,如果发生此类情况,您会希望收到警告。为此,您应该启用所有警告。编译时添加 -Wall -Wextra
标志。
但是,在这种特殊情况下您不需要这些标志。如果您没有禁用警告,您应该会收到 implicit type conversion
警告。
如评论中所述,要针对这种情况启用警告,您可以使用 -Wconstant-conversion
标志。