gpt4 book ai didi

c++ - 将 auto 用于 boost::posix_time::time_duration 时出现错误 C2274: 'function-style cast' 的原因是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 11:32:24 25 4
gpt4 key购买 nike

下面这段代码:

auto td = boost::posix_time::seconds(1);

auto seconds = td.seconds(); // (*)

std::cout << seconds << std::endl;

在 CL 16 上出现以下错误:

error C2274: 'function-style cast' : illegal as right side of '.' operator

在标有//(*) 的行上。

当我将第一行更改为:

boost::posix_time::time_duration td = boost::posix_time::seconds(1);

它编译得很好。

如果我理解正确,boost::posix_time::seconds(1) 返回此类的一个实例:

class seconds : public time_duration
{
public:
explicit seconds(long s) :
time_duration(0,0,s)
{}
};

(来自boost/date_time/posix_time/posix_time_duration.hpp)

time_duration类公开了公共(public)方法seconds:

sec_type seconds() const

(来自 boost/date_time/time_duration.hpp)。

那么这里的auto有什么问题呢?

最佳答案

auto 的第一次使用将类型推断为 boost::posix_time::seconds,而不是 boost::posix_time::time_duration .在 seconds 类型中,seconds 指的是类型/构造函数,编译器无法再找到您打算调用的继承函数,现在是隐藏函数。

我会采用您已经知道的方法:您可以将 td 声明为 boost::posix_time::time_duration

(我不完全确定标准在这里说了什么——它可能允许也可能不允许。我只关注你的编译器允许的内容。)

关于c++ - 将 auto 用于 boost::posix_time::time_duration 时出现错误 C2274: 'function-style cast' 的原因是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24229212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com