无法从 char 指针复制到 short
Can't copy from char pointer to short
我有一个包含以下信息的字符指针:
char* data = "22";
我想将它从 char 复制到一个 short 变量中。
我有以下代码:
short BinarySerializer::getMessageTypeID(char* data)
{
short* messageTypeID;
memcpy( messageTypeID, data, sizeof( messageTypeID ) );
return *messageTypeID;
}
我不知道为什么,但是当我打印它时我得到:12850。
我是这样打印的:
short temp = msg->messageTypeID;
cout << "Message ID is: " << temp << endl;
提前致谢
也许您指的是以下内容
#include <iostream>
#include <sstream>
#include <numeric>
#include <cstring>
struct BinarySerializer
{
short getMessageTypeID( const char *data ) const;
short getMessageTypeID1( const char *data ) const;
};
short BinarySerializer::getMessageTypeID( const char *data ) const
{
short messageTypeID = 0;
std::istringstream is( data );
is >> messageTypeID;
return messageTypeID;
}
short BinarySerializer::getMessageTypeID1( const char *data ) const
{
short messageTypeID;
messageTypeID = std::accumulate( data, data + std::strlen( data ), ( short)0,
[]( short acc, char c )
{
return 10 * acc + ( c - '0' );
} );
return messageTypeID;
}
int main()
{
const char *s = "22";
std::cout << BinarySerializer().getMessageTypeID( s ) << std::endl;
std::cout << BinarySerializer().getMessageTypeID1( s ) << std::endl;
}
输出为
22
22
如果数据看起来像"22sdfsd"
。然后你需要添加代码来找到第一个非数字值。
你也可以使用函数 std::strtol
并检查获取的值是否在 short 类型值的范围内。
例如(不检查获取的值是否对short类型有效)
short BinarySerializer::getMessageTypeID( const char *data ) const
{
short messageTypeID = 0;
messageTypeID = ( short )strtol( data, nullptr, 10 );
return messageTypeID;
}
让我们看一下内存,假设 short 的大小是 char 的两倍(并非总是如此!):
包含“22”字符串的字符数组在内存中:
50 50
所以基本上
00110010 00110010
当你 memcpy 到一个 short 时,你会得到一个数字,由两个字节组成:
00110010 00110010
转换为十进制表示 12850。
现在,我认为您真的想将“22”ascii table 转换为“22”值。在这种情况下,您可以参考
Convert string to int C++
如果您确实需要支持像“23123dsdwdwqdwqd”这样的字符串(这种情况很少见),您可以复制所需大小的子字符串并处理该子字符串。
请记住,当涉及到可变大小时,C++ 标准唯一保证的是
sizeof(char) <= sizeof (short) <= sizeof(int) <= sizeof(long)
因此,如果您依赖 sizeof(short) = 2 * sizeof(char)
这一事实,那么您根本就不是 table。
我有一个包含以下信息的字符指针:
char* data = "22";
我想将它从 char 复制到一个 short 变量中。 我有以下代码:
short BinarySerializer::getMessageTypeID(char* data)
{
short* messageTypeID;
memcpy( messageTypeID, data, sizeof( messageTypeID ) );
return *messageTypeID;
}
我不知道为什么,但是当我打印它时我得到:12850。
我是这样打印的:
short temp = msg->messageTypeID;
cout << "Message ID is: " << temp << endl;
提前致谢
也许您指的是以下内容
#include <iostream>
#include <sstream>
#include <numeric>
#include <cstring>
struct BinarySerializer
{
short getMessageTypeID( const char *data ) const;
short getMessageTypeID1( const char *data ) const;
};
short BinarySerializer::getMessageTypeID( const char *data ) const
{
short messageTypeID = 0;
std::istringstream is( data );
is >> messageTypeID;
return messageTypeID;
}
short BinarySerializer::getMessageTypeID1( const char *data ) const
{
short messageTypeID;
messageTypeID = std::accumulate( data, data + std::strlen( data ), ( short)0,
[]( short acc, char c )
{
return 10 * acc + ( c - '0' );
} );
return messageTypeID;
}
int main()
{
const char *s = "22";
std::cout << BinarySerializer().getMessageTypeID( s ) << std::endl;
std::cout << BinarySerializer().getMessageTypeID1( s ) << std::endl;
}
输出为
22
22
如果数据看起来像"22sdfsd"
。然后你需要添加代码来找到第一个非数字值。
你也可以使用函数 std::strtol
并检查获取的值是否在 short 类型值的范围内。
例如(不检查获取的值是否对short类型有效)
short BinarySerializer::getMessageTypeID( const char *data ) const
{
short messageTypeID = 0;
messageTypeID = ( short )strtol( data, nullptr, 10 );
return messageTypeID;
}
让我们看一下内存,假设 short 的大小是 char 的两倍(并非总是如此!):
包含“22”字符串的字符数组在内存中:
50 50
所以基本上
00110010 00110010
当你 memcpy 到一个 short 时,你会得到一个数字,由两个字节组成:
00110010 00110010
转换为十进制表示 12850。
现在,我认为您真的想将“22”ascii table 转换为“22”值。在这种情况下,您可以参考
Convert string to int C++
如果您确实需要支持像“23123dsdwdwqdwqd”这样的字符串(这种情况很少见),您可以复制所需大小的子字符串并处理该子字符串。
请记住,当涉及到可变大小时,C++ 标准唯一保证的是
sizeof(char) <= sizeof (short) <= sizeof(int) <= sizeof(long)
因此,如果您依赖 sizeof(short) = 2 * sizeof(char)
这一事实,那么您根本就不是 table。