C ++ 11实验,为什么我不能使用一些功能?

时间:2011-11-01 18:49:59

标签: c++ c++11

我目前正在概述C ++ 11的新功能,并且由于目前尚未理解的原因,其中一些不能编译。我使用gcc版本4.6.0 20100703(实验性)(GCC),所以根据GNU GCC FAQ,我尝试的所有功能都是supported。我尝试使用std = c ++ 0x和std = gnu ++ 0x flags进行编译。

非会员开始()&端()

例如,我不想在一段代码中使用非成员begin()和end():

#include <iostream>
#include <map>
#include <utility>
#include <iterator>

using namespace std;
int main ( ) {
    map < string, string > alias;
    alias.insert ( pair < string, string > ( "ll", "ls -al" ) );
    // ... Other inserts

    auto it = begin(alias);
    while ( it != end(alias) ) {
        //...
    }

我明白了,

nonMemberBeginEnd//main.cc:15:24: error: ‘begin’ was not declared in this scope
nonMemberBeginEnd//main.cc:15:24: error: unable to deduce ‘auto’ from ‘<expression error>’ // Ok, this one is normal.
nonMemberBeginEnd//main.cc:16:26: error: ‘end’ was not declared in this scope

我是否需要添加特殊标题?

适用范围

我的第二个(也是最后一个)问题是怪异的,因为它不能依赖于我可能没有包含的黑魔法隐藏的标题。

以下代码:

for ( auto kv : alias )
    cout << kv.first << " ~ " << kv.second << endl;

给我以下错误:

rangeFor/main.cc:15:17: error: expected initializer before ‘:’ token

我希望我的问题不是你的问题,也不是你们的新手,你们会帮助我找出问题所在:D

1 个答案:

答案 0 :(得分:5)

适用于gcc 4.6.1:

#include <iostream>
#include <map>
#include <string>

int main(int argc, char** argv) {
    std::map<std::string, std::string> alias = {{"key", "value"}};
    for (auto kv: alias)
        std::cout << kv.first << " ~ " << kv.second << std::endl;

    auto it = begin(alias);
    while (it != end(alias) ) {
        std::cout << (*it).first << " ~ " << (*it).second << std::endl;
        it++;
    }
    return EXIT_SUCCESS;
}

结果:

# /opt/gcc-4.6.1/bin/g++-4.6 --std=c++0x test.cc -o test && ./test
key ~ value
key ~ value