gpt4 book ai didi

c++ - 定义行为类似于标准 C++ 数据类型的新数据类型

转载 作者:行者123 更新时间:2023-11-30 04:05:04 25 4
gpt4 key购买 nike

在我的程序中,我想为 IPAddressV4 定义一个新的数据类型,为此我定义了以下类:

#include <boost/array.hpp>
#include <boost/asio.hpp>

#include "archive.hpp"

using boost::asio::ip::address_v4;
typedef boost::uint8_t uint8; /**< 8-bit unsigned interger. */

class IPAddrV4
{
public:
/**
* Construct a IPAddrV4 data type.
*/
IPAddrV4() : _ip_address(0)
{}


/**
* Construct a IPAddrV4 data type.
*
* @param ip_address The value of the IPv4 Address in text format.
*/
IPAddrV4(std::string ip_address) : _ip_address(0)
{
*this = ip_address;
}

/**
* Set the IPv4 Address value.
*
* @param val The value of the IPv4 Address in text format.
* @return The reference to the IPAddrV4 data type.
*/
IPAddrV4& operator=(std::string ip_address)
{
boost::asio::ip::address_v4::bytes_type bytes
= boost::asio::ip::address_v4::from_string(ip_address).to_bytes();

_ip_address = ((uint32(bytes.at(0)) << 24) |
(uint32(bytes.at(1)) << 16) |
(uint32(bytes.at(2)) << 8) |
uint32(bytes.at(3)));

return *this;
}

IPAddrV4& operator=(uint32 ip_address)
{
_ip_address = ip_address;
return *this;
}

/**
* Get the IPv4 Address data type value.
*
* @return The IPv4 Address data type value in binary form.
*/
operator uint32()
{
return _ip_address;
}

private:
uint32 _ip_address;

};

稍后我将使用此类进行一些序列化和反序列化,以通过 TCP 连接发送数据。当我使用输出存档进行序列化时,我没有遇到任何问题。

IPAddrV4 ip("127.0.0.1");
oarchive & ip;

在上面的示例中,IP 的值被转换为二进制形式,然后复制到输出存档中。 oarchive 的大小将增加 4 字节。

但是当我尝试将此数据类型与输入存档一起用于序列化时,我遇到了问题:

IPAddrV4 ip;
iarchive & ip;

这是我在编译时遇到的错误:

No match for 'operator&' in 'input_Archive & IPAddrV4::operator uint32()'

那么我在 IPAddrV4 中缺少什么?

注意:输入存档与标准 c++ 数据类型(如 uint、string..等)完美配合。

最佳答案

关于c++ - 定义行为类似于标准 C++ 数据类型的新数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23462329/

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