- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
N2976建议添加constexpr
到标准库中的某些位置。它指出 iostream
s 不适合 constexpr
除了结束迭代器。所以istream_iterator
和 istreambuf_iterator
给出了 constexpr
默认构造函数,仅此而已。例如,您可以在 libstdc++ implementation 中看到那constexpr
在整个文件中只出现一次。引发此更改的 LWG 是 #1129 .它说:
istream_iterator
andistreambuf_iterator
should support literal sentinel values. The default constructor is frequently used to terminate ranges, and could easily be a literal value foristreambuf_iterator
, andistream_iterator
when iterating value types. [Rest omitted]
这对我来说意义不大。谁能给我举个例子说明它们的意思?
N3308是另一篇提到但没有解释问题的论文:
Some of the
istream_iterator<T>
constructors are required to beconstexpr
ifT
is a literal type. The intention is to allow existing implementation technique of storing a type ofT
inline to continue to work. [libstdc++ does this,_Tp _M_value
] However, it actually rules out this technique: the default and copy constructors ofT
need not be markedconstexpr
, and if they are not, theistream_iterator<T>
constructors could not be instantiated asconstexpr
.
上面解释了普通的复制构造函数和析构函数,但没有解释为什么默认构造函数被标记为 constexpr。
此外,在线测试GCC 5.2.0,我复制了libstdc++的实现。唯一的变化是我从 istream_iterator()
中删除了 constexpr .在这两种情况下,程序集都是相同的。
最佳答案
这里有一个流迭代器的结尾被用作标记值的例子:
// istream_iterator example
#include <iostream> // std::cin, std::cout
#include <iterator> // std::istream_iterator
int main () {
double value1, value2;
std::cout << "Please, insert two values: ";
std::istream_iterator<double> eos; // end-of-stream iterator
std::istream_iterator<double> iit (std::cin); // stdin iterator
if (iit!=eos) value1=*iit;
++iit;
if (iit!=eos) value2=*iit;
std::cout << value1 << "*" << value2 << "=" << (value1*value2) << '\n';
return 0;
}
http://www.cplusplus.com/reference/iterator/istream_iterator/istream_iterator/
将此声明为 constexpr
允许编译器将创建流结束迭代器的调用折叠为常量,而不是每次都调用一个函数。否则,它可能必须在循环的每次迭代中都这样做。
关于c++ - constexpr end istream (sentinel) 迭代器有什么意义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32665765/
我正在尝试弄清楚如何让一个成员变量代表传入的 istream 或类自己创建的成员变量。 我认为,如果我动态分配类创建的 istream,那么使用指向 istream 的指针可能会起作用;然而,问题在于
我正在尝试理解这段代码 istream &read(istream &is, Sales_data &item) { double price = 0; is >> item.b
我编写了一个实现 IStream(COM 接口(interface)而不是 C++ 标准库类)的过滤器。这一切都很好,但我的问题是我不确定何时(如果有的话)我可以确定不会发送进一步的 IStream
我正在测试 C++PL 书中的一段代码并找到了下一段代码(我不想感觉我是在将它从书中复制粘贴到我的 IDE,所以我至少改变了变量名): istream& operator>> (istream& is
我正在阅读 C++ Practical Programming by Example by Andrew Koenig (Author)并在 4.1.3 Reading homework grades
我正在尝试使用 istream& getline 而不是使用 istream& operator 从文件中读取行。 结果cpp #include "Result.h" Result::Result()
我试图通过套接字连接发送图像,但我遇到了以下代码的问题: //stream to char array STATSTG myStreamStats; ULONG bytesSaved; myStrea
这里有两段代码,我起初认为它们应该是等价的: { std::ifstream stream("test.bin", std::ios_base::in | std::ios_base::bin
我在网上查了,但没找到合适的。 怎么可能有这样的主线(原始主线): int main() { Image left; std::ifstream ifs("l
假设我有以下代码: std::ifstream file(name, flags); file.seekg(0, std::ios::beg); // Check for error file.rea
在 Windows 上的 C++ 中,是否有任何简单的方法可以为现有 std::stream 对象创建 (COM) IStream 接口(interface)? 一个示例是使用 IWICStream:
考虑以下简单程序,它将输入拆分为空白并每行打印出一个非空白标记: #include int main(int argc, char* argv[]) { while (std::ci
istream& getline (istream& is, string& str); 此处 str 在换行符后终止。但是,如果我想处理 str cotents 2-3 行的情况,那么还有什么选择呢
这个问题已经有答案了: Java multiple file transfer over socket (3 个回答) 已关闭 5 年前。 我正在编写一个程序在两台计算机之间传输文件,但我没有关闭套接
void transferData(ifstream& input_file, ofstream& output_file) { char ch; while (input_file
我正在读取包含以下行的文本文件: deltaT 0.005; 在字符串中找到正确的行后,我想使用如下代码读出该值: double deltaT;
我正在查看 istream 类,但没有看到可以完全清除缓冲区并将输入设置为为下一个“干净”输入做好准备的方法。 我为我的类定义了提取运算符,在我的主程序中我要求用户输入,如下所示: while (tr
我正在编写一个解析器,之前我在尝试解析标识符(任何对 C++ 变量名有效的东西)和未闭合的字符串文字(任何以 " 开头的东西)时遇到了麻烦,但是在我的输入末尾缺少结束符 ")。我认为这是因为词法分析器
我得到了一个具有以下签名的函数。我无法改变它,我必须接受它。 void parse(std::istream & in); 我应该测试这个函数,所以基本上用预定义的内容调用它并检查值是否被正确解析。因
我的运算符(operator)有问题>> istream& operator>> (istream& is, Matrix& M) { char first; is>>first;
我是一名优秀的程序员,十分优秀!