gpt4 book ai didi

c++ - C++中的字符串到长数组

转载 作者:搜寻专家 更新时间:2023-10-31 01:04:40 25 4
gpt4 key购买 nike

我知道可以像这样将字符串转换为字符数组:

string a = "abcdefgh";
char b[8];
strcpy(b, a.c_str());
cout << (int)b[3];

这里我得到输出 100

我的问题是:如何将字符串转换为long 数组。我想知道如何将字符串“abcdefgh”转换为数组 long b[2]。第一个长 (b[0]) 应该是长 0x61626364,第二个 (b[1]) 应该是 0x65666768 。如果这是有道理的。所以

cout << (unsigned int)b[0]

应该输出 1001633837924

最佳答案

尝试以下操作

#include <iostream>
#include <iomanip>
#include <string>

int main()
{
std::string s( "abcdefgh" );
long b[2] = {};

for ( std::string::size_type i = 0, j = 0; i < 2 && j < s.size(); j++ )
{
b[i] = b[i] << 8 | ( unsigned char)s[j];
if ( j % sizeof( long ) == sizeof( long ) - 1 ) i++;
}

std::cout << std::hex << b[0] << '\t' << b[1] << std::endl;

return 0;
}

输出是

61626364    65666768

替换语句会更好

        if ( j % sizeof( long ) == sizeof( long ) - 1 ) i++;

对于

        if ( j % sizeof( *b ) == sizeof( *b ) - 1 ) i++;

在这种情况下,您可以在不更改所有其他代码的情况下更改 b 的类型。例如

#include <iostream>
#include <iomanip>
#include <string>

int main()
{
std::string s( "abcdefgh" );
long long b[2] = {};

for ( std::string::size_type i = 0, j = 0; i < 2 && j < s.size(); j++ )
{
b[i] = b[i] << 8 | ( unsigned char)s[j];
if ( j % sizeof( *b ) == sizeof( *b ) - 1 ) i++;
}

std::cout << std::hex << b[0] << '\t' << b[1] << std::endl;

return 0;
}

输出是

6162636465666768    0

关于c++ - C++中的字符串到长数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23478944/

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