尝试在 Qt SDK 4.7.4 for Desktop - MinGW 4.4 下编译以下代码会导致以下编译器错误:
#include <QtCore/QCoreApplication>
#include <QMap>
struct Buffer
{
char data[4];
};
// A Bucket needs to reserve 16 chars worth of Buffers
typedef Buffer Bucket[(16 * (sizeof (char))) / (sizeof (Buffer))];
typedef QMap<QString, Bucket *> BucketMap;
int main(int argc, char *argv[])
{
BucketMap bucket;
bucket.insert(QString("foo"), new Bucket()); //compile error
return 0;
}
../test/main.cpp: In function 'int main(int, char**)':
../test/main.cpp:13: error: no matching function for call to 'QMap<QString, Buffer (*)[4]>::insert(QString, Buffer*)'
../../../QtSDK/Desktop/Qt/4.7.4/mingw/include/QtCore/qmap.h:556: note: candidates are: QMap<Key, T>::iterator QMap<Key, T>::insert(const Key&, const T&) [with Key = QString, T = Buffer (*)[4]]
mingw32-make.exe[1]: *** [debug/main.o] Error 1
mingw32-make.exe: *** [debug] Error 2
我尝试将其转换为使用std::string
和std::map
相同效果的等效示例。我展示了 Qt 版本,因为它更紧凑,并且最终符合我的项目所需的形式。
我猜我只是遗漏了一些关于typedef
最终如何解释的东西。为什么第二个参数insert
显然是Buffer *
(not Buffer(*)[4]
),我该如何解决?