我正在使用Windows 8.1,Visual Studio社区2013.
我下载了1.59增强版
然后我打开Developer Command Prompt for VS2013
,运行bootstrap.bat,然后运行b2.exe
所有.lib文件都放在./stage/lib/
下
我设置了c ++ include路径和链接器路径。我成功构建了程序并在调试模式下运行
这是我收到的错误消息:
Unhandled exception at 0x77394598 in BoostStation.exe: Microsoft C++ exception: boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::system::system_error> > at memory location 0x001BFD74.
这是断点:
throw enable_current_exception(enable_error_info(e)); // from throw_exception.hpp
任何人都知道如何解决问题?
另一个问题,是否有任何.dll文件由此构建生成,我在哪里可以找到它们?
这是我的计划:
MulticastSender.h
#include <boost/asio.hpp>
#include <boost/scoped_ptr.hpp>
#include <string>
class MulticastSender
{
public:
MulticastSender(const boost::asio::ip::address& multicast_addr, const unsigned short multicast_port)
: ep_(multicast_addr, multicast_port)
{
socket_.reset(new boost::asio::ip::udp::socket(svc_, ep_.protocol()));
}
~MulticastSender()
{
socket_.reset(NULL);
}
public:
void send_data(const std::string& msg)
{
socket_->send_to(boost::asio::buffer(msg), ep_);
}
private:
boost::asio::ip::udp::endpoint ep_;
boost::scoped_ptr<boost::asio::ip::udp::socket> socket_;
boost::asio::io_service svc_;
};
的main.cpp
#include "stdafx.h"
#include "MulticastSender.h"
int _tmain(int argc, _TCHAR* argv[])
{
boost::asio::ip::address multiCastGroup;
multiCastGroup.from_string("192.168.32.1");
MulticastSender outDoor(multiCastGroup, 6000);
while (true)
{
outDoor.send_data("Hello");
Sleep(1000);
}
return 0;
}
答案 0 :(得分:1)
你的升级安装没问题,因为很明显你可以编译和链接一个抛出boost::exception
的程序。
通过将代码包装在try
/ catch
块中来捕获异常,然后打印出消息。我相应地更改了main
- 函数:
#include "stdafx.h"
#include "MulticastSender.h"
#include "boost/exception.hpp"
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
try
{
boost::asio::ip::address multiCastGroup;
multiCastGroup.from_string("192.168.32.1");
MulticastSender outDoor(multiCastGroup, 6000);
while (true)
{
outDoor.send_data("Hello");
Sleep(1000);
}
}
catch (const std::exception& e)
{
std::cout << boost::diagnostic_information(e) << std::endl;
}
return 0;
}
这将捕获boost抛出的异常并在程序退出之前打印其消息。
您还应该阅读一般的例外情况:http://www.cplusplus.com/doc/tutorial/exceptions/