2
$ uname -a
Darwin Wheelie-Cyberman 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386

$ g++ --version
i686-apple-darwin10-g++-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ cat nolove.cc
#include <iostream>
#include <sstream>

using namespace std;

int main(int argc, char ** argv) {
  unsigned long long i = 0;
  ostringstream o();

  // Compiles fine
  cout << i;

  // Explodes, see below
  o << i;

  return 0;
}

$ g++ -o nolove nolove.cc
nolove.cc: In function ‘int main(int, char**)’:
nolove.cc:14: error: invalid operands of types ‘std::ostringstream ()()’ and ‘long long unsigned int’ to binary ‘operator<<’

我对 C++ 有点陌生(但不是编程或 OO 设计等),所以我假设我只是做错了。在实践中,上面的 unsigned long long 相当于我的目标平台上的无符号 64 位整数(在 linux 2.6 上和 g++ 4.4.1 上),相当于相同事物的不同类型也是可以接受的(但我没有找到任何.)

我可以使用 ostringstream 来格式化这个(或类似的)类型吗?如果没有,我可以在不拖入 stdio 和 snprintf 的情况下做到这一点吗?更哲学地说,打字是如何计算出 cout 可以做到的,为什么不将该功能扩展到字符串流的东西?

4

1 回答 1

6

这是因为这个

ostringstream o(); 

不声明变量,而是返回流的函数。

试试这个

ostringstream o; 

也可以看看

最令人头疼的解析:为什么不 A a(()); 工作?

于 2011-08-29T06:23:22.300 回答