2010-05-16 5 views
8

Der Versuch, etwas wie das Folgende mit einem Char-Array zu verwenden, aber es kompiliert nicht. Aber das Beispiel mit short [] funktioniert gut. Irgendeine Idee warum? :)Boost ForEach Frage

char someChars[] = {'s','h','e','r','r','y'}; 
    BOOST_FOREACH(char& currentChar, someChars) 
    { 

    } 


short array_short[] = { 1, 2, 3 }; 
    BOOST_FOREACH(short & i, array_short) 
    { 
     ++i; 
    } 

Antwort

17

Wenn Sie auf die Linie in <boost/foreach.hpp> gehen, die die Erstellung Fehler auslöst, werden Sie den folgenden Kommentar siehe:

// **** READ THIS IF YOUR COMPILE BREAKS HERE **** 
// 
// There is an ambiguity about how to iterate over arrays of char and wchar_t. 
// Should the last array element be treated as a null terminator to be skipped, or 
// is it just like any other element in the array? To fix the problem, you must 
// say which behavior you want. 
// 
// To treat the container as a null-terminated string, merely cast it to a 
// char const *, as in BOOST_FOREACH(char ch, (char const *)"hello") ... 
// 
// To treat the container as an array, use boost::as_array() in <boost/range/as_array.hpp>, 
// as in BOOST_FOREACH(char ch, boost::as_array("hello")) ... 

Mit boost::as_array(someChars) wie im Kommentar angezeigt sollte Kompilierung Fehler beheben.

+0

Vielen Dank. War zu schnell, um auf SO zu posten. :) – bobber205