- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试编译这段代码:
#include <boost/date_time.hpp>
using boost::posix_time::time_duration;
int main()
{
volatile time_duration t0;
time_duration t1 = t0;
return 0;
}
使用这个命令:
g++ test01.cpp -std=c++11 -I /boost_1_55_0/ -o test01
我得到这个错误:
test01.cpp:6:22: error: no matching function for call to ‘boost::posix_time::time_duration::time_duration(volatile boost::posix_time::time_duration&)
我正在使用 gcc 4.8.2;知道如何解决这个问题吗?
最佳答案
这是由于 a GCC bug .像这样解决它:
volatile time_duration t0;
time_duration t1 = const_cast<time_duration&>(t0);
之所以有效,是因为 const_cast
可以消除波动性和常量性。请注意,我不确定这有多严格。
另一种解决方法是首先摆脱 volatile
;如今,它很少起到任何作用。
关于c++ - 在boost::posix_time中,如何从volatile time_duration构造time_duration?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24449504/
我想计算 boost::posix_time:ptime 中两个时间戳之间的时间差(以秒为单位)。但是,由于 timestamp 最多包含微秒,结果可能会出乎我的意料。 boost::posix_ti
我正在使用 boost::posix_time 来实现时钟。 date d(2000,Jan,20); ptime start(d); time_iterator titr(start,microse
我有以下代码从 posix_time 获取 UNIX 时间 boost::posix_time::ptime time1(boost::gregorian::date(9999,12,31)); bo
我想转换一个 time_duration到 DATE格式,即自1899年以来的天数、12、30。 DATE date_from_duration(time_duration td) { doub
我想通过网络传输 boost::posix_time::ptime 作为 boost::int64_t。根据A way to turn boost::posix_time::ptime into an
我正在使用 boost::posix_time::ptime 来测量我的模拟运行时间和其他东西。 假设 boost::posix_time::ptime start, stop; boost::pos
可以通过 total_microseconds 方法从 time_duration 中获取总微秒数,但我不知道如何根据该数字重新构建 time_duration。文档中似乎没有用于此目的的构造函数,我
考虑这段代码(使用 VS2015 编译,使用 boost 1.60: #include #include #include int main( int argc, char* argv[] )
我知道我可以使用 boost::gregorian::date_duration 作为以天为单位的时间间隔,使用 boost::posix_time::time_duration 作为时间间隔,但是有
您好,我正在使用 boost Posix 时间系统。我有课 class event{ private: boost::posix_time::ptime time; //some other stuu
我正在尝试为 boost::posix_time::duration 编写一个简单的生成器以在另一个生成器中使用。现在对我来说关键是我想打印的“+”或“-”。到目前为止我所拥有的是: struct G
我正在尝试将 boost::posix_time::time_duration 对象转换为 "%H%M"形式的 string。问题是对话是不工作就好像它不存在一样。 我用来将 Duration 转换为
下面这段代码: auto td = boost::posix_time::seconds(1); auto seconds = td.seconds(); // (*) std::cout << se
我是一名优秀的程序员,十分优秀!