- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题How to use correctly the return value from std::cin.get()
and std::cin.peek()
?让我想知道是否可以保证
std::char_traits<char>::to_int_type(c) == static_cast<int>(c)
对于所有有效
char
值
c
.
istream::peek
电话
streambuf::sgetc
, 使用
to_int_type
转换
char
值(value)成
int_type
.现在,
std::cin.peek() == '\n'
真正的意思是下一个字符是
\n
?
int
值(value) e
, to_char_type(e)
返回c
, 如果 eq_int_type(e, to_int_type(c))
一些 c
;int
值 e
和 f
, eq_int_type(e, f)
返回eq(c, d)
, 如果 e == to_int_type(c)
和 f == to_int_type(d)
一些 c
和 d
;true
, 如果 e == eof()
和 f == eof()
;false
, 如果 e == eof()
异或f == eof()
;eof()
返回值 e
使得 !eq_int_type(e, to_int_type(c))
所有 c
.eq(c, d)
伊夫(unsigned char) c == (unsigned char) d
.// char: [-128, 127]
// unsigned char: [0, 255]
// int: [-2^31, 2^31-1]
#define EOF INT_MIN
char to_char_type(int e) {
return char(e - 1);
}
int to_int_type(char c) {
return int(c) + 1;
}
bool eq(char c, char d) {
return c == d;
}
bool eq_int_type(int c, int d) {
return c == d;
}
int eof() {
return EOF;
}
注意
unsigned char
的转换至 int
是保值的;char
的转换至 unsigned char
是双射的。int
值(value) e
, 如果 eq_int_type(e, to_int_type(c))
一些 c
,然后 e == int(c) + 1
.因此,to_char_type(e) == char(int(c)) == c
.int
值 e
和 f
, 如果 e == to_int_type(c)
和 f == to_int_type(d)
一些 c
和 d
,然后 eq_int_type(e, f)
伊夫int(c) + 1 == int(d) + 1
伊夫c == d
(按属性 1)。 EOF 案例也很容易验证。char
值(value) c
, int(c) >= -128
,所以 int(c) + 1 != EOF
.因此,!eq_int_type(eof(), to_int_type(c))
.char
值 c
和 d
, eq(c, d)
伊夫(unsigned char) c == (unsigned char d)
(按属性 2)。std::cin.peek() == '\n'
不做它应该做的事?我在分析中遗漏了什么吗?
最佳答案
Does that mean this implementation is conforming, and therefore std::cin.peek() == '\n' does not do what it is supposed to do?
eq_int_type(std::cin.peek(), to_int_type('\n'))
以保证正确的结果。
to_char_type(EOF)
由于
INT_MIN - 1
中的签名溢出,具有未定义的行为.当然,在这种情况下未指定该值,但您仍然不能拥有 UB。这将是有效的:
char to_char_type(int e) {
return e == EOF
? 0 // doesn't matter
: char(e - 1);
}
to_int_type
将在 int 和 char 大小相同的系统上使用 UB,以防
c == INT_MAX
,但您已经排除了那些具有假设大小的系统。
关于c++ - 是否保证 std::char_traits<char>::to_int_type(c) == static_cast<int>(c)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66217741/
对引用 static_cast 的引用是否与指向指针 static_cast 的指针具有相同的运行时间成本? 例如 class B; class A: public class B; A obj; A
在下面的示例中,编译器接受 static_cast 向下转换,导致未定义的行为,而我认为 static_cast 完全是为了安全(C 风格转换无法提供) . #include class Base
在以下代码中(取自有效的 C++): class A { .... char& operator[](std::size_t position) // now just cal
我正在尝试理解 Pybind11 docs here 中使用的静态转换.具体来说,他们使用语法 static_cast(&Pet::set) 因为在我努力解释并应用到我自己的代码之前我还没有见过这种语
本题不涉及多态,即不涉及虚方法,不涉及虚基类。以防万一,我的案子不涉及这些。 假设我有一个类 Derived它有一个明确的可访问父类型 Base ,没有多态性(没有虚方法,没有虚基类),但可能涉及间接
我看到有人建议使用 static_cast(static_cast(p))而不是重新解释类型转换。 我不明白为什么这样更好,谁能解释一下? 为了便于讨论,这里有一个需要 reinterpret_cas
如果我执行以下操作,一切正常: char* cp = "abc"; void* vp = NULL; vp = static_cast(cp);//ok cp = static_cast(vp);//
让我们有一个名为 Y 的重载函数: void Y(int& lvalue) { cout void f(T&& x) { Y( static_cast(x) ); // Using sta
当你动态分配了一个 char * 类型的缓冲区并想将它转换为特定类型时,你是否应该使用类似的东西 reinterpret_cast(char *) 或者类似的东西 static_cast(static
这是来自 std::enable_if 教程中的示例。 这里有更多的上下文: // handle signed types template auto incr1(Int& target, Int a
我正在阅读 Scott Meyers 的 Effective C++ 3rd。 在第 3 项中: Use const whenever possible. In order to use const
我是 C++ 编程的初学者...我正在练习,遇到了这个问题...这里我尝试在复合运算符上使用 static_cast...我实际上正在尝试除两个整数并得到双倍的答案...这是代码: #include
如果我有两个类: 1) 员工 2) 工程师是派生 从员工 3) 经理是派生 从员工 我被告知(并自己尝试过)以下内容无法编译: Employee employee("John Smith"); Eng
我正在尝试实现一类数值 vector 。我正在使用类似于 STL vector 的 Qt 模板 QVector typedef float ArithmeticF; typedef QVector V
是否使用 static_cast 将 const unsigned char& 转换为 const unsigned long long& 已定义? constexpr unsigned char a
#include class A { public: A() { std::cout (a_obj); // This isn't safe. b_obj
我在我们的生产环境中遇到了以下代码结构(但是大大简化了)。 #include typedef struct { char entry[10]; } inn_struct; typedef s
我有以下两个类: class B; class A { public: A(); operator B() const; }; class B {
我有以下代码片段 class base { public: virtual void MyMethod() { std::cout (b); d->MyMeth
这是一个 discussion on stackoverflow四种显式转换中的一种。但我在投票最多的答案中遇到了一个问题。 引用自投票最多的 wiki 答案: static_cast can als
我是一名优秀的程序员,十分优秀!