升压::公历::日期

发布于 2024-09-18 18:42:30 字数 466 浏览 7 评论 0原文

我无法让它与 Visual C++ 2005 和 boost 1.43 一起使用

,这个简单的源代码:

#include <boost/date_time.hpp>

int main( int argc, char** argv )
{
    boost::gregorian::date d();
}

给出了链接时错误:

error LNK2019: unresolved external symbol "class boost::gregorian::date __cdecl d(void)" (?d@@YA?AVdate@gregorian@boost@@XZ)

我一直在使用其他编译的 boost 库,如文件系统或线程,没有问题...

我使用它进行了编译

bjam -a

I can't get it to work with visual c++ 2005 and boost 1.43

this simple source code :

#include <boost/date_time.hpp>

int main( int argc, char** argv )
{
    boost::gregorian::date d();
}

gives a link-time error :

error LNK2019: unresolved external symbol "class boost::gregorian::date __cdecl d(void)" (?d@@YA?AVdate@gregorian@boost@@XZ)

I've been using other compiled boost libraries like filesystem or thread without problems...

I compiled it using

bjam -a

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

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

发布评论

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

评论(1

把梦留给海 2024-09-25 18:42:30

您正在声明一个函数原型,而不是创建一个 boost::gregorian::date 变量。去掉括号。

boost::gregorian::date d;

You're declaring a function prototype, not creating a boost::gregorian::date variable. Take off the parentheses.

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