为什么这段代码无法编译?

发布于 2024-11-25 02:59:45 字数 771 浏览 1 评论 0原文

这些代码有什么区别吗:

std::string dirName = argv[1];
MyRecordDatabaseType myDB(Selector<std::string>((std::string)dirName));

std::string dirName = argv[1];
MyRecordDatabaseType myDB(Selector<std::string>(dirName));

不知道为什么第二个版本不能编译。

编译器告诉我:

error: request for member ‘createGroupWriter’ in ‘myDB’, which is of non-class type ‘main(int, char**)::MyRecordDatabaseType(Selector<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >)’

at line:

MyRecordDatabaseType::writer_type myWriter(myDB.createGroupWriter(groupName));

抱歉,我无法向您展示 Selector 或任何其他类的代码。

也许你可以帮助我,不需要那个?

Is there any difference in these codes:

std::string dirName = argv[1];
MyRecordDatabaseType myDB(Selector<std::string>((std::string)dirName));

and

std::string dirName = argv[1];
MyRecordDatabaseType myDB(Selector<std::string>(dirName));

I have no idea why the second version doesn't compile.

The compiler tells me:

error: request for member ‘createGroupWriter’ in ‘myDB’, which is of non-class type ‘main(int, char**)::MyRecordDatabaseType(Selector<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >)’

at line:

MyRecordDatabaseType::writer_type myWriter(myDB.createGroupWriter(groupName));

And sorry, but I can't show you the code of Selector or any other class.

Maybe you can help me without that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖心男生 2024-12-02 02:59:45

是的,不同之处在于这一行

MyRecordDatabaseType myDB(Selector<std::string>(dirName)); 

也可以写成

MyRecordDatabaseType myDB(Selector<std::string>  dirName); 

和 ,它是返回 MyRecordDatabaseType 的函数 myDB 的声明。

请参阅 C++ 最令人烦恼的解析

Yes, the difference is that this line

MyRecordDatabaseType myDB(Selector<std::string>(dirName)); 

can also be written like

MyRecordDatabaseType myDB(Selector<std::string>  dirName); 

and is a declaration of a function myDB that returns MyRecordDatabaseType.

See C++ most vexing parse

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文